2016-12-16 18:20:26 +01:00
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2022-01-13 18:54:26 +01:00
|
|
|
hook global BufCreate .*[.](phpt?) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype php
|
2016-12-16 18:20:26 +01:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global WinSetOption filetype=php %{
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module php
|
2019-04-10 05:54:19 +02:00
|
|
|
|
2022-04-30 11:22:47 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group php-trim-indent php-trim-indent
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar .* -group php-indent php-indent-on-char
|
2021-04-17 10:17:01 +02:00
|
|
|
hook window InsertChar \n -group php-insert php-insert-on-new-line
|
2019-04-10 05:54:19 +02:00
|
|
|
hook window InsertChar \n -group php-indent php-indent-on-new-line
|
|
|
|
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window php-.+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
hook -group php-highlight global WinSetOption filetype=php %{
|
|
|
|
add-highlighter window/php-file ref php-file
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/php-file }
|
2019-03-13 22:00:59 +01:00
|
|
|
}
|
|
|
|
|
2020-07-28 22:18:09 +02:00
|
|
|
provide-module php %§
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module html
|
|
|
|
|
2016-12-16 18:20:26 +01:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/php regions
|
|
|
|
add-highlighter shared/php/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/php/double_string region '"' (?<!\\)(\\\\)*" group
|
|
|
|
add-highlighter shared/php/single_string region "'" (?<!\\)(\\\\)*' fill string
|
|
|
|
add-highlighter shared/php/doc_comment region /// '$' group
|
|
|
|
add-highlighter shared/php/doc_comment2 region /\*\* \*/ ref php/doc_comment
|
|
|
|
add-highlighter shared/php/comment1 region // '$' fill comment
|
|
|
|
add-highlighter shared/php/comment2 region /\* \*/ fill comment
|
|
|
|
add-highlighter shared/php/comment3 region '#' '$' fill comment
|
2022-01-13 16:24:15 +01:00
|
|
|
add-highlighter shared/php/heredoc region -match-capture '<<<(.*?)$' '^\h*(.*?);' fill string
|
2018-07-01 11:53:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
add-highlighter shared/php/code/ regex &?\$\w* 0:variable
|
|
|
|
add-highlighter shared/php/code/ regex \b(false|null|parent|self|this|true)\b 0:value
|
|
|
|
add-highlighter shared/php/code/ regex "(\b|-)[0-9]*\.?[0-9]+\b" 0:value
|
|
|
|
add-highlighter shared/php/code/ regex \b((string|int|bool)|[A-Z][a-z].*?)\b 0:type
|
|
|
|
add-highlighter shared/php/code/ regex \B/[^\n/]+/[gimy]* 0:meta
|
|
|
|
add-highlighter shared/php/code/ regex '<\?(php)?|\?>' 0:meta
|
|
|
|
|
|
|
|
add-highlighter shared/php/double_string/ fill string
|
|
|
|
add-highlighter shared/php/double_string/ regex (?<!\\)(\\\\)*(\$\w+)(->\w+)* 0:variable
|
|
|
|
add-highlighter shared/php/double_string/ regex \{(?<!\\)(\\\\)*(\$\w+)(->\w+)*\} 0:variable
|
2018-03-21 14:44:52 +01:00
|
|
|
|
|
|
|
# Highlight doc comments
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/php/doc_comment/ fill string
|
|
|
|
add-highlighter shared/php/doc_comment/ regex '`.*`' 0:module
|
|
|
|
add-highlighter shared/php/doc_comment/ regex '@\w+' 0:meta
|
2016-12-16 18:20:26 +01:00
|
|
|
|
|
|
|
# Keywords are collected at
|
|
|
|
# http://php.net/manual/en/reserved.keywords.php
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/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
|
|
|
|
2018-03-21 14:44:52 +01:00
|
|
|
# Highlighter for html with php tags in it, i.e. the structure of conventional php files
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/php-file regions
|
|
|
|
add-highlighter shared/php-file/html default-region ref html
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/php-file/php region '<\?(php)?' '\?>' ref php
|
2018-03-21 14:44:52 +01:00
|
|
|
|
2016-12-16 18:20:26 +01:00
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-12-19 10:10:26 +01:00
|
|
|
define-command -hidden php-trim-indent %{
|
2016-12-16 18:20:26 +01:00
|
|
|
# remove trailing white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
|
2016-12-16 18:20:26 +01:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -hidden php-indent-on-char %<
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %<
|
2016-12-16 18:20:26 +01:00
|
|
|
# align closer token to its opener when alone on a line
|
2020-07-29 04:49:42 +02:00
|
|
|
try %/ execute-keys -draft <a-h> <a-k> ^\h+[\]}]$ <ret> m s \A|.\z <ret> 1<a-&> /
|
2016-12-16 18:20:26 +01:00
|
|
|
>
|
|
|
|
>
|
|
|
|
|
2021-04-17 10:17:01 +02:00
|
|
|
define-command -hidden php-insert-on-new-line %<
|
2017-11-03 09:09:45 +01:00
|
|
|
evaluate-commands -draft -itersel %<
|
2019-06-10 05:04:13 +02:00
|
|
|
# copy // comments or docblock * prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft s [^/] <ret> k x s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P }
|
2021-04-17 10:17:01 +02:00
|
|
|
# append " * " on lines starting a multiline /** or /* comment
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^\h*/[*][* ]? <ret> j gi i <space>*<space> }
|
2021-04-17 10:17:01 +02:00
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
define-command -hidden php-indent-on-new-line %<
|
|
|
|
evaluate-commands -draft -itersel %<
|
2016-12-16 18:20:26 +01:00
|
|
|
# preserve previous line indent
|
2019-10-22 11:02:06 +02:00
|
|
|
try %{ execute-keys -draft <semicolon> K <a-&> }
|
2016-12-16 18:20:26 +01:00
|
|
|
# filter previous line
|
2018-12-19 10:10:26 +01:00
|
|
|
try %{ execute-keys -draft k : php-trim-indent <ret> }
|
2016-12-16 18:20:26 +01:00
|
|
|
# indent after lines beginning / ending with opener token
|
2022-03-16 23:20:07 +01:00
|
|
|
try %_ execute-keys -draft k x <a-k> ^\h*[[{]|[[{]$ <ret> j <a-gt> _
|
2021-04-17 11:51:25 +02:00
|
|
|
# deindent closer token(s) when after cursor
|
2022-03-16 23:20:07 +01:00
|
|
|
try %_ execute-keys -draft x <a-k> ^\h*[})] <ret> gh / [})] <ret> m <a-S> 1<a-&> _
|
2016-12-16 18:20:26 +01:00
|
|
|
>
|
|
|
|
>
|
|
|
|
|
2020-07-28 22:18:09 +02:00
|
|
|
§
|