vim:keys: Keep selection when changing indentation

This commit is contained in:
2022-12-25 22:42:22 +01:00
parent 3480b7fa46
commit 3a7f06256f

View File

@@ -223,3 +223,8 @@ noremap ][ ]]
" Strip trailing whitespace
nnoremap <leader><space> :silent! %s/\v\s+$//<CR>
" Keep selection when changing the indentation in visual mode
vnoremap > >gv
vnoremap < <gv
vnoremap = =gv