Merge remote-tracking branch 'arrufat/zig-auto-remove-empty-comments'
This commit is contained in:
commit
3fae7cd7c0
|
@ -101,10 +101,22 @@ define-command -hidden zig-trim-indent %{
|
||||||
}
|
}
|
||||||
|
|
||||||
define-command -hidden zig-insert-on-new-line %<
|
define-command -hidden zig-insert-on-new-line %<
|
||||||
evaluate-commands -draft -itersel %<
|
try %[
|
||||||
# copy // or /// comments prefix or \\ string literal prefix and following whitespace
|
evaluate-commands -draft -save-regs '/"' %[
|
||||||
try %< execute-keys -draft k x s ^\h*\K(///?|\\\\)\h* <ret> y gh j P >
|
# copy // or /// comments prefix or \\ string literal prefix and following whitespace
|
||||||
>
|
execute-keys -save-regs '' k x1s^\h*((///?|\\\\)+\h*)<ret> y
|
||||||
|
try %[
|
||||||
|
# if the previous comment isn't empty, create a new one
|
||||||
|
execute-keys x<a-K>^\h*//+\h*$<ret> jxs^\h*<ret>P
|
||||||
|
] catch %[
|
||||||
|
# if there is no text in the previous comment, remove it completely
|
||||||
|
execute-keys d
|
||||||
|
]
|
||||||
|
]
|
||||||
|
|
||||||
|
# trim trailing whitespace on the previous line
|
||||||
|
try %[ execute-keys -draft k x s\h+$<ret> d ]
|
||||||
|
]
|
||||||
>
|
>
|
||||||
|
|
||||||
define-command -hidden zig-indent-on-new-line %<
|
define-command -hidden zig-indent-on-new-line %<
|
||||||
|
|
Loading…
Reference in New Issue
Block a user