From 2cdc544bfe15bba3e67f0bee50a097a688adbf17 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 6 Jul 2020 16:27:11 +0200 Subject: [PATCH] Fix "all line" motion in vim --- vim/plugin/shame.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/plugin/shame.vim b/vim/plugin/shame.vim index 177e8a5..3866c90 100644 --- a/vim/plugin/shame.vim +++ b/vim/plugin/shame.vim @@ -504,10 +504,10 @@ command! -nargs=? Tempfile exec 'new '.tempname() | set filetype= | au Bu " │ └──────────────────────┴─┤ " └──────────────────────────┘ -onoremap al :normal! 0vg_ +onoremap al :normal! 0vg$h onoremap il :normal! ^vg_ -nnoremap val 0vg_ +nnoremap val 0vg$h nnoremap vil ^vg_ " --- ! as in ranger ---