- 论坛徽章:
- 0
|
我想把vim插件中的miniBufExplorer和NERDTree,TagList整合起来所以加了let g:winManagerWindowLayout="NERDTree|TagList|miniBufExpl"
map <F3> :WMToggle<CR>
可是按下F3后NERDTree|TagList可以正常打开,而minibufExplorer无法打开提示说:是找不到这个插件
我的.vimrc的部分配置如下:
let g:miniBufExplMapWindowNavVim = 1
207 let g:miniBufExplMapWindowNavArrows = 1
208 let g:miniBufExplMapCTabSwitchBufs = 1
209 let g:miniBufExplModSelTarget = 1
210 let g:miniBufExplMoreThanOne=0
211
212 let g:NERDTree_title="[NERDTree]"
213 let g:winManagerWindowLayout="NERDTree|TagList|miniBufExpl"
214
215 function! NERDTree_Start()
216 exec 'NERDTree'
217 endfunction
218
219 function! NERDTree_IsValid()
220 return 1
221 endfunction
222
223 map <F3> :WMToggle<CR>
求高手指教
|
|