# Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](php) %{ set-option buffer filetype php } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter shared/ regions -default code php \ double_string '"' (? s \h+$ d } } define-command -hidden php-indent-on-char %< evaluate-commands -draft -itersel %< # align closer token to its opener when alone on a line try %/ execute-keys -draft ^\h+[]}]$ m s \A|.\z 1 / > > define-command -hidden php-indent-on-new-line %< evaluate-commands -draft -itersel %< # copy // comments prefix and following white spaces try %{ execute-keys -draft k s ^\h*\K#\h* y gh j P } # preserve previous line indent try %{ execute-keys -draft \; K } # filter previous line try %{ execute-keys -draft k : php-filter-around-selections } # indent after lines beginning / ending with opener token try %_ execute-keys -draft k ^\h*[[{]|[[{]$ j _ > > # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group php-highlight global WinSetOption filetype=php %{ add-highlighter window ref php } hook global WinSetOption filetype=php %{ hook window InsertEnd .* -group php-hooks php-filter-around-selections hook window InsertChar .* -group php-indent php-indent-on-char hook window InsertChar \n -group php-indent php-indent-on-new-line } hook -group php-highlight global WinSetOption filetype=(?!php).* %{ remove-highlighter window/php } hook global WinSetOption filetype=(?!php).* %{ remove-hooks window php-indent remove-hooks window php-hooks }