1. 程式人生 > >Vim winmanager檔案瀏覽自動更新

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