clang_complete is breaking my vim key binding -
clang_complete is breaking my vim key binding -
i'm trying map tab in visual mode can indent block of code it. can utilize < , > want tab because standard text editors , ides. how mapping tab indent:
vnoremap <tab> >gv vnoremap <s-tab> <gv this works fine until load clang_complete plugin , works when not in c++ file. opened plugin , see no mappings this. saw mapping used tab in snippets/clang_complete.py file when comment out nil changes. why happening , how can prepare it?
:verbose vmap <tab>
will tell visual mode mapping defined (in c++ buffer), , where. you'll recognize buffer-local mapping @ prefix. that, can remove or :vunmap mapping.
vim
Comments
Post a Comment