Vim winmanager文件浏览自动更新

Vim winmanager文件浏览自动更新

使用winmanger插件时发现其中引用的fileexplorer不能自动更新到当前文件夹,进行如下修改就OK啦.
修改winfileexplorer.vim中的FileExplorer_Start()函数:

function! FileExplorer_Start()
let b:displayMode = "winmanager"
call s:EditDir(getcwd())
" if exists('s:lastDirectoryDisplayed')
"  call s:EditDir(s:lastDirectoryDisplayed)
" else
"  call s:EditDir(expand("%:p:h"))
" end
" if exists('s:lastCursorRow')
"  exe s:lastCursorRow
"  exe 'normal! '.s:lastCursorColumn.'|'
" end
endfunction

你可能感兴趣的:(Vim winmanager文件浏览自动更新)