From a1130d37099ff320d5362426e68d62568473671f Mon Sep 17 00:00:00 2001 From: lelgenio Date: Fri, 11 Dec 2020 14:15:17 -0300 Subject: [PATCH] rename groups --- dotfiles/kak/indent.kak | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfiles/kak/indent.kak b/dotfiles/kak/indent.kak index a814844..ff2d723 100644 --- a/dotfiles/kak/indent.kak +++ b/dotfiles/kak/indent.kak @@ -22,11 +22,11 @@ hook global BufOpenFile .*\.ya?ml %{ # yaml is ass and does not allow tabs for indent hook global BufOpenFile .*\.ya?ml %{ execute-keys -draft '%s^\s*' - } -group kakrc-replace-spaces-with-tabs + } -group yaml-replace-spaces-with-tabs hook global BufWritePre .*\.ya?ml %{ execute-keys -draft '%s^\s*@' - } -group kakrc-replace-spaces-with-tabs + } -group yaml-replace-spaces-with-tabs {%@@ else @@%} ################################################################# @@ -38,6 +38,6 @@ hook global BufOpenFile .*\.ya?ml %{ # use spaces insted of tabs hook global InsertChar \t %{ exec -draft -itersel h@ - } -group kakrc-replace-tabs-with-spaces + } -group replace-tabs-with-spaces {%@@ endif @@%}