Vim winmanager文件浏览自动更新

使用winmanger插件中发现其中引用的fileexplorer不能自动更新到当前文件夹。

   

    将vim/plugin/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学习)