let g:miniBufExplMapWindowNavVim = 1 let g:miniBufExplMapWindowNavArrows = 1 let g:miniBufExplMapCTabSwitchBufs = 1 let g:miniBufExplModSelTarget = 1
:TlistToggle
Sources:
1. Install id=1520|text=OmniCppComplete. See its
doc/omnicppcomplete.txt
file for information.
” OmniCppComplete let OmniCppNamespaceSearch = 1 let OmniCppGlobalScopeSearch = 1 let OmniCppShowAccess = 1 let OmniCppShowPrototypeInAbbr = 1 “ show function parameters let OmniCppMayCompleteDot = 1 ” autocomplete after . let OmniCppMayCompleteArrow = 1 “ autocomplete after → let OmniCppMayCompleteScope = 1 ” autocomplete after :: let OmniCppDefaultNamespaces = [“std”, “GLIBCXXSTD”] “ automatically open and close the popup menu / preview window au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif set completeopt=menuone,menu,longest,preview </code>
TaskList
autocmd FileType python set omnifunc=pythoncomplete#Complete
* Usage: Ctrl+x Ctrl+o to open dropdown list.