1. 程式人生 > >SourceInsight巨集外掛3(非常好用,強力推薦)

SourceInsight巨集外掛3(非常好用,強力推薦)

openfolder.em原始碼:(連結:https://pan.baidu.com/s/1draaimWzCHZ3vLxL--lfiQ  提取碼:zyq4)

//使用資源管理器開啟當前檔案所在資料夾,並個高亮選中當前檔案 推薦快捷鍵 ctrl+D

macro ToExplorerFolder()   //Alt+D
{
    buf = GetCurrentBuf();
    curFilePath = GetBufName(buf);
    cmdLine = "explorer.exe /select,@[email protected]"; // 其實就是通過explorer.exe 命令列直接開啟 eg: explorer.exe /select,C:\xx.log 會自動選中xx.log
RunCmdLine(cmdLine, Nil, 0); }

//在sourceinsight的巨集語言中,@[email protected] 可以連線兩個字串

 

程式碼非原創,如有侵權,請聯絡刪除