知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

GVIM脚本――打开当前文件所在位置

发布时间:2014-09-05 15:56:07作者:知识屋


GVIM脚本——打开当前文件所在位置
 
[plain]
function OpenFileLocation()  
    if ( expand("%") != "" )  
        execute "!start explorer /select, %"   
    else    www.zhishiwu.com  
        execute "!start explorer /select, %:p:h"  
    endif  
endfunction  
  
map gb <ESC>:call OpenFileLocation()<CR>  
  
"我的第一个VIM脚本。  
 
"功能:当前文件所在位置,同时不阻塞当前窗口。  
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜