Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

EmEditor調用外掛的巨集寫法

$
0
0

在使用EmEditor時,因為我經常有簡體中文轉換成繁體中文的需求,以前都是全選內容後再點擊簡轉繁外掛圖示,今天特別嘗試了一下使用巨集來調用的作法。

  1. 先到EmEditor簡轉繁外掛GitHub下載簡轉繁外掛 ToTraditionalChinese500x86.zip
  2. 將.zip解壓縮後,在EmEditor裡,功能表外掛程式→自訂外掛程式→添加,選好ToTraditionalChinese.dll
  3. 建立巨集,腳本內容如下:
document.selection.SelectAll();
// 調用簡轉繁外掛
// nResult = editor.ExecutePlugin( strPluginFileName, nFlags, nParam, strParam );
nResult = editor.ExecutePlugin("D:\\doc\\JERRY\\EmEditor\\PlugIns\\ToTraditionalChinese.dll", 
  eePluginExecuteCommand | eePluginAbsolutePath);

document.selection.SelectAll();
var _sText = document.selection.Text;

文字處理完畢後,最後再自動存檔:

editor.ExecuteCommandByID(4488);  // Save as UTF-8 w/o BOM

1. 💡 相關鏈接

✅library/README.md at main · Emurasoft/library

##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles