作者:虎爷在江湖 | 来源:互联网 | 2014-06-02 23:14
GVIM脚本——打开当前文件所在位置[plain]functionOpenFileLocation()if(expand("%")!"")execute"!startexplorer/select,%"elsewww.2cto.come
GVIM脚本——打开当前文件所在位置
[plain]
function OpenFileLocation()
if ( expand("%") != "" )
execute "!start explorer /select, %"
else www.2cto.com
execute "!start explorer /select, %:p:h"
endif
endfunction
map gb :call OpenFileLocation()
"我的第一个VIM脚本。
"功能:当前文件所在位置,同时不阻塞当前窗口。