From 656b1d74a31b7cbb8c96978aa4b3746b53d73de2 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Wed, 9 Jun 2021 17:42:34 +0300 Subject: [PATCH] [nvim] implement the A and I mappings for Visual mode --- nvim/plugin/editing.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index 36d4220..e59bd3c 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -145,6 +145,9 @@ set commentstring=//%s " Repeat the last edit n times, taken from nnoremap . execute "normal!" repeat(".", v:count1) + xnoremap A :normal! A + xnoremap I :normal! I + " }}}