From 52e363521f2f03caec4467ae801bd836b527aff0 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 17 Sep 2021 15:24:17 -0400 Subject: [PATCH] Bind ' to run macros --- vim/config/keyboard.vim | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vim/config/keyboard.vim b/vim/config/keyboard.vim index 7270320..31d3cc6 100644 --- a/vim/config/keyboard.vim +++ b/vim/config/keyboard.vim @@ -188,6 +188,9 @@ " < | (V) -> un-indent all the lines currently selected " < | (N) -> un-indent the current line " +" (macros) +" ' | (N) -> run a macro +" " (movement) " = | (N) -> go to the first char on the next line " _ | (N) -> go to the first char on the previous line @@ -701,6 +704,10 @@ nnoremap < v "} + "MACROS:{ + nnoremap ' @ + "} + "MOVEMENT:{ "additional mappings for easier access nnoremap = +