標籤:func color info modify pat .exe 內容 parser ++
一、NotePad++外掛程式 / NotePad++ Plugins
1、Function List ( Unicode )
當前最新版本:Version 2.1
發布日期:2010-02-18
安裝程式:http://sourceforge.net/projects/npp-plugins/files/Function%20List/FunctionList%20Plugin%20v2.1/FunctionList_2_1_UNI_dll.zip/download
2、NppExec ( Unicode )
當前最新版本:Version 0.4.1
發布日期:2010-07-22
安裝程式:http://sourceforge.net/projects/npp-plugins/files/NppExec/NppExec%20Plugin%20v0.4.1/NppExec_041_dll_Unicode.zip/download
二、安裝環境 / Environment
Windows2003 / Windows XP
Notepad++-5.8.5 (Unicode版本)
三、NotePad++外掛程式安裝 / NotePad++ - Howto Install Plugins
如何安裝NotePad++的外掛程式,其官網原文如下:
Usually, the only installation procedure plugins require is to
- place the dll in the plugins subfolder of the Notepad++ install folder;
- place any configuration file it comes with in plugin\config
- preferrably, place all documentation files in plugin\doc, or in some subfolder of it
Notepad++ loads plugins at startup. To load a new plugin, you can either close and restart Notepad++, or use the Settings -> Import -> Import plugin command. The latter will copy the dll in the plugin folder if it is not already there.
譯文:
通常情況下,安裝程式外掛程式只需要執行如下方法:
- 將DLL檔案複製到Notepad++安裝目錄的plugins目錄下;
- 將設定檔複製到plugins\Config目錄下;
- 更好的做法,將所有的文檔檔案複製到plugins\doc目錄下,或它的子目錄下。
Notepad++在啟動的時候載入外掛程式。要載入一個新外掛程式,你可以關閉並重啟Notepad++,或使用 Setting -> Import -> Import plugin 命令。稍後將複製外掛程式的DLL到plugins目錄下。
四、Function List 外掛程式安裝 / Howto Install Plugin "Function List"
1、下載並解壓 FunctionList_2_1_UNI_dll.zip。
2、將 FunctionList.dll 複製到Notepad++ 的 plugins 目錄下。
3、將C++.flb、FunctionListRules.xml、Gmod Lua.bmp 複製到 plugins\Config 目錄下。
4、重啟NotePad++。效果如下:
五、NppExec外掛程式安裝和配置 / Howto Install and Configure Plugin "NppExec"
1、NppExec安裝。
- 下載並解壓 NppExec_041_dll_Unicode.zip。
- 將 NppExec.dll 和目錄NppExec 複製到Notepad++ 的 plugins 目錄下。
- 將doc目錄下的 fparser.html、NppExec.txt、NppExec_Manual.chm、NppExec_Manual.knt、NppExec_TechInfo.txt 複製到 plugins\doc\NppExec 目錄下。
- 重啟NotePad++。
2、NppExec配置。
1. 開啟菜單 Plugins -> NppExec -> Execute...。
2. 配置編譯C檔案。
進入“Execute...” 對話方塊,輸入 cmd /c "gcc -o $(CURRENT_DIRECTORY)$(NAME_PART) $(FULL_CURRENT_PATH) ",點擊“Save...”按鈕儲存,命名為“CompileC”。
3. 配置編譯C++檔案。
進入“Execute...” 對話方塊,輸入 cmd /c "g++ -o $(CURRENT_DIRECTORY)$(NAME_PART) $(FULL_CURRENT_PATH) ",點擊“Save...”按鈕儲存,命名為“CompileC++”。
4、將“CompileC”,“CompileC++”添加到宏菜單(Macros)下。
1)開啟菜單 Plugins -> NppExec ->Advanced Options...。
2)在Associated script:下面下拉框中選擇“CompileC”,“CompileC++”,點擊“Add/Modify”按鈕將它們依次添加到Menu items下面的列表中。
選擇 "Place to the Macros submenu"複選框。
3)開啟菜單 Macro ,可以看到“CompileC”,“CompileC++”都已經添加到宏菜單(Macros)下。
5、編譯C語言helloworld程式 。
1)輸入helloworld.c 的原始碼:
#include <stdio.h>
void print() {
printf ("Hello World!\n");
}
main() {
print();
return 0;
}
2)點擊菜單 Macro -> CompileC,執行效果如所示。
在與helloworld.c 相同的目錄下產生了一個 hellowrold.exe 檔。
說明:如果編譯的 *.c檔案的路徑中包含了空格,在執行“Compile C”命令時將報錯。
六、NotePad++ 開啟自動聯想提示 / NotePad++ - Enable Autocompletion1、開啟菜單 Settings -> Preferences...。
2、點擊 Backup/Auto-Completion 選項卡。
選擇 Enable auto-completion on each input.
選擇 World completion。
選擇 Function parameters hint on input
3、在編輯地區中,輸入內容,自動聯想提示功能效果如所示。
參考資料 /References1、http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central
2、http://yihui.name/en/2010/08/auto-completion-in-notepad-for-r-script/
NotePad++ - 安裝和配置C/C++開發外掛程式 | NotePad++ - Install and Configure plugins for develop C/C++