歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

GVIM腳本——打開當前文件所在位置

GVIM腳本——打開當前文件所在位置
  1. function OpenFileLocation()  
  2.     if ( expand("%") != "" )  
  3.         execute "!start explorer /select, %"   
  4.     else  
  5.         execute "!start explorer /select, %:p:h"  
  6.     endif  
  7. endfunction  
  8.   
  9. map gb <ESC>:call OpenFileLocation()<CR>  
  10.   
  11. "我的第一個VIM腳本。  
  12. "功能:當前文件所在位置,同時不阻塞當前窗口。  
Copyright © Linux教程網 All Rights Reserved