2016-12-16 18:20:26 +01:00
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](php) %{
|
|
|
|
set buffer filetype php
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default code php \
|
2016-12-16 18:20:26 +01:00
|
|
|
double_string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
single_string "'" (?<!\\)(\\\\)*' '' \
|
|
|
|
comment // '$' '' \
|
|
|
|
comment /\* \*/ ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /php/double_string fill string
|
|
|
|
add-highlighter -group /php/single_string fill string
|
|
|
|
add-highlighter -group /php/comment fill comment
|
2016-12-16 18:20:26 +01:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /php/code regex \$\w* 0:identifier
|
|
|
|
add-highlighter -group /php/code regex \b(false|null|parent|self|this|true)\b 0:value
|
|
|
|
add-highlighter -group /php/code regex "-?[0-9]*\.?[0-9]+" 0:value
|
|
|
|
add-highlighter -group /php/code regex \b((string|int|bool)|[A-Z][a-z].*?)\b 0:type
|
|
|
|
add-highlighter -group /php/code regex (?<=\W)/[^\n/]+/[gimy]* 0:meta
|
2016-12-16 18:20:26 +01:00
|
|
|
|
|
|
|
# Keywords are collected at
|
|
|
|
# http://php.net/manual/en/reserved.keywords.php
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /php/code regex \b(__halt_compiler|abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|eval|exit|extends|final|finally|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|namespace|new|or|print|private|protected|public|require|require_once|return|static|switch|throw|trait|try|unset|use|var|while|xor|yield|__CLASS__|__DIR__|__FILE__|__FUNCTION__|__LINE__|__METHOD__|__NAMESPACE__|__TRAIT__)\b 0:keyword
|
2016-12-16 18:20:26 +01:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden php-filter-around-selections %{
|
2016-12-16 18:20:26 +01:00
|
|
|
# remove trailing white spaces
|
|
|
|
try %{ exec -draft -itersel <a-x> s \h+$ <ret> d }
|
|
|
|
}
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden php-indent-on-char %<
|
2016-12-16 18:20:26 +01:00
|
|
|
eval -draft -itersel %<
|
|
|
|
# align closer token to its opener when alone on a line
|
|
|
|
try %/ exec -draft <a-h> <a-k> ^\h+[]}]$ <ret> m s \`|.\' <ret> 1<a-&> /
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden php-indent-on-new-line %<
|
2016-12-16 18:20:26 +01:00
|
|
|
eval -draft -itersel %<
|
2017-01-11 14:56:48 +01:00
|
|
|
# copy // comments prefix and following white spaces
|
2017-01-13 01:50:03 +01:00
|
|
|
try %{ exec -draft k <a-x> s ^\h*\K#\h* <ret> y gh j P }
|
2016-12-16 18:20:26 +01:00
|
|
|
# preserve previous line indent
|
2017-01-13 01:50:03 +01:00
|
|
|
try %{ exec -draft \; K <a-&> }
|
2016-12-16 18:20:26 +01:00
|
|
|
# filter previous line
|
2017-01-13 01:56:30 +01:00
|
|
|
try %{ exec -draft k : php-filter-around-selections <ret> }
|
2016-12-16 18:20:26 +01:00
|
|
|
# indent after lines beginning / ending with opener token
|
2017-01-13 01:50:03 +01:00
|
|
|
try %_ exec -draft k <a-x> <a-k> ^\h*[[{]|[[{]$ <ret> j <a-gt> _
|
2016-12-16 18:20:26 +01:00
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group php-highlight global WinSetOption filetype=php %{ add-highlighter ref php }
|
2016-12-16 18:20:26 +01:00
|
|
|
|
|
|
|
hook global WinSetOption filetype=php %{
|
2017-01-13 01:56:30 +01:00
|
|
|
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
|
2016-12-16 18:20:26 +01:00
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group php-highlight global WinSetOption filetype=(?!php).* %{ remove-highlighter php }
|
2016-12-16 18:20:26 +01:00
|
|
|
|
|
|
|
hook global WinSetOption filetype=(?!php).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window php-indent
|
|
|
|
remove-hooks window php-hooks
|
2016-12-16 18:20:26 +01:00
|
|
|
}
|