From 4d90b684d48061974ab8b248f6da204161e5b139 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 20 Sep 2022 20:41:55 +0200 Subject: [PATCH] Change to , to match new bindings --- home/kakoune/autoload/latex.kak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/kakoune/autoload/latex.kak b/home/kakoune/autoload/latex.kak index 3fadaf6..4bb9c9d 100644 --- a/home/kakoune/autoload/latex.kak +++ b/home/kakoune/autoload/latex.kak @@ -11,13 +11,13 @@ define-command -hidden create-begin-block %{ execute-keys "b0" execute-keys -with-hooks -with-maps "c" hook -once buffer ModeChange .*:normal %{ - execute-keys -with-maps "gl" + execute-keys -with-maps ",gl" } } # Create a begin block with the given parameter as block name. define-command -params 1 create-begin-block-with %{ execute-keys "i\begin{b0}\end{b0}" - execute-keys "b0c%arg{1}" + execute-keys "b0c%arg{1}," execute-keys "ok" execute-keys -with-maps "gl" }