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