summaryrefslogtreecommitdiff
path: root/rc/filetype/php.kak
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2022-03-17 09:20:07 +1100
committerMaxime Coste <mawww@kakoune.org>2022-07-05 08:43:40 +1000
commitef8a11b3dbefb8a1222974a8c34e15fa006d56e0 (patch)
treee66d71d0a5d67c6bc43d4d5977b8468d0335b62d /rc/filetype/php.kak
parent046be3b06ce41922e363c742ee9470f0ac885d4b (diff)
Make `x` just select the full lines
`x` is often criticized as hard to predict due to its slightly complex behaviour of selecting next line if the current one is fully selected. Change `x` to use the previous `<a-x>` behaviour, and change `<a-x>` to trim to fully selected lines as `<a-X>` did. Adapt existing indentation script to the new behaviour
Diffstat (limited to 'rc/filetype/php.kak')
-rw-r--r--rc/filetype/php.kak10
1 files changed, 5 insertions, 5 deletions
diff --git a/rc/filetype/php.kak b/rc/filetype/php.kak
index 560daa01..62ba6ddd 100644
--- a/rc/filetype/php.kak
+++ b/rc/filetype/php.kak
@@ -72,7 +72,7 @@ add-highlighter shared/php-file/php region '<\?(php)?' '\?>' ref php
define-command -hidden php-trim-indent %{
# remove trailing white spaces
- try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
+ try %{ execute-keys -draft -itersel x s \h+$ <ret> d }
}
define-command -hidden php-indent-on-char %<
@@ -85,9 +85,9 @@ define-command -hidden php-indent-on-char %<
define-command -hidden php-insert-on-new-line %<
evaluate-commands -draft -itersel %<
# 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 x s ^\h*\K(?://|[*][^/])\h* <ret> y gh j P }
# 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 x s ^\h*/[*][* ]? <ret> j gi i <space>*<space> }
>
>
@@ -98,9 +98,9 @@ define-command -hidden php-indent-on-new-line %<
# filter previous line
try %{ execute-keys -draft k : php-trim-indent <ret> }
# indent after lines beginning / ending with opener token
- try %_ execute-keys -draft k <a-x> <a-k> ^\h*[[{]|[[{]$ <ret> j <a-gt> _
+ try %_ execute-keys -draft k x <a-k> ^\h*[[{]|[[{]$ <ret> j <a-gt> _
# deindent closer token(s) when after cursor
- try %_ execute-keys -draft <a-x> <a-k> ^\h*[})] <ret> gh / [})] <ret> m <a-S> 1<a-&> _
+ try %_ execute-keys -draft x <a-k> ^\h*[})] <ret> gh / [})] <ret> m <a-S> 1<a-&> _
>
>