Fix unterminated string in rc/filetype/php.kak

This commit is contained in:
ioh 2021-09-02 14:54:47 -07:00
parent 5c6c58ae22
commit b739ca4ca6

View File

@ -85,7 +85,7 @@ define-command -hidden php-indent-on-char %<
define-command -hidden php-insert-on-new-line %< define-command -hidden php-insert-on-new-line %<
evaluate-commands -draft -itersel %< evaluate-commands -draft -itersel %<
# copy // comments or docblock * prefix and following white spaces # copy // comments or docblock * prefix and following white spaces
try %{ execute-keys -draft s [^/] <ret> k <a-x> s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P try %{ execute-keys -draft s [^/] <ret> k <a-x> s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P }
# append " * " on lines starting a multiline /** or /* comment # append " * " on lines starting a multiline /** or /* comment
try %{ execute-keys -draft k <a-x> s ^\h*/[*][* ]? <ret> j gi i <space>*<space> } try %{ execute-keys -draft k <a-x> s ^\h*/[*][* ]? <ret> j gi i <space>*<space> }
> >