VIM: Swaps colon and semicolon in normal and visual mode
I use colon (command mode) far more than semicolon (repeat any of fFtT)
This commit is contained in:
parent
8a3cc67dce
commit
3424880833
1 changed files with 7 additions and 0 deletions
7
nvim/.config/nvim/plugin/mappings.vim
Normal file
7
nvim/.config/nvim/plugin/mappings.vim
Normal file
|
@ -0,0 +1,7 @@
|
|||
" Swaps semi colon to colon in normal mode
|
||||
nnoremap ; :
|
||||
nnoremap : ;
|
||||
|
||||
" Swaps semi colon to colon in visual mode
|
||||
vnoremap ; :
|
||||
vnoremap : ;
|
Loading…
Add table
Add a link
Reference in a new issue