rename groups

This commit is contained in:
lelgenio 2020-12-11 14:15:17 -03:00
parent 794c6e74f5
commit a1130d3709
1 changed files with 3 additions and 3 deletions

View File

@ -22,11 +22,11 @@ hook global BufOpenFile .*\.ya?ml %{
# yaml is ass and does not allow tabs for indent # yaml is ass and does not allow tabs for indent
hook global BufOpenFile .*\.ya?ml %{ hook global BufOpenFile .*\.ya?ml %{
execute-keys -draft '%s^\s*<ret><a-@>' execute-keys -draft '%s^\s*<ret><a-@>'
} -group kakrc-replace-spaces-with-tabs } -group yaml-replace-spaces-with-tabs
hook global BufWritePre .*\.ya?ml %{ hook global BufWritePre .*\.ya?ml %{
execute-keys -draft '%s^\s*<ret>@' execute-keys -draft '%s^\s*<ret>@'
} -group kakrc-replace-spaces-with-tabs } -group yaml-replace-spaces-with-tabs
{%@@ else @@%} {%@@ else @@%}
################################################################# #################################################################
@ -38,6 +38,6 @@ hook global BufOpenFile .*\.ya?ml %{
# use spaces insted of tabs # use spaces insted of tabs
hook global InsertChar \t %{ hook global InsertChar \t %{
exec -draft -itersel h@ exec -draft -itersel h@
} -group kakrc-replace-tabs-with-spaces } -group replace-tabs-with-spaces
{%@@ endif @@%} {%@@ endif @@%}