I recently installed some plugins so I can use Vim as my development IDE. It appears some of the plugins are not playing nicely with each other.
Currently, I have the following vim plugins in my plugin directory:
My ~/.vimrc file has the following contents:
autocmd BufRead *.vala,*.vapi set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m
au BufRead,BufNewFile *.vala,*.vapi setfiletype vala
set nocp ts=4 sw=4 noet ai cin bs=2 cb=unnamed
set number ruler wrap autoread showcmd showmode fdm=marker nobackup
syntax on
filetype plugin on
set incsearch
set tags=./tags;/
map <C-\> :tab split<CR>:exec("tag ".expand("<cword>"))<CR>
map <A-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR>
When I attempt to open a C or C++ file, I get the following warning message:
Mapping already in use: "<LocalLeader>sb", mode "n"
Press Enter to Continue
Does anyone know which of the plugins is causing this, and how to resolve this issue?
:verbose map <LocalLeader>sb
this will show you which plugin(s) set that mapping
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With