[ADD][VIM] Better vim-unimpaired mappings

I use a french layout keyboard ('AZERTY' layout), which does not have
the greatest access to '[' and ']'.
This commit is contained in:
Bruno BELANYI 2019-10-12 13:30:33 +02:00
parent ca7ae65732
commit f8112777ad

View file

@ -360,6 +360,14 @@ map <Leader>es :source $MYVIMRC<CR>
" Run make silently, then skip the 'Press ENTER to continue'
noremap <Leader>m :silent! :make! \| :redraw!<CR>
" Better fr layout mappings for vim-unimpaired and other '[' and ']' commands
nmap ( [
nmap ) ]
omap ( [
omap ) ]
xmap ( [
xmap ) ]
" }}}
" Mapping for quickfix bindings {{{