我在前一篇文章(http://www.cnblogs.com/MikeZhang/archive/2012/02/09/windowsGo.html)中介紹了怎麼在windows下安裝go語言,今天我要介紹的是怎麼用notepad++配置go語言開發環境。
一、準備工作:
1、安裝go語言;
2、將go/bin目錄加入環境變數;
3、安裝notepad++;
二、配置notepad++支援go語言文法高亮
1、下載notepad++的go語言支援包(http://notepad-plus.sourceforge.net/commun/userDefinedLang/go.zip);
2、將檔案userDefineLang_Go.xml內容copy至Application Data下Notepad++目錄的userDefineLang.xml;
XP: C:\Documents and Settings\[username]\Application Data\Notepad++
Vista/Win7 : C:\Users\[username]\AppData\Roaming\Notepad++
3、將go.xml檔案copy至notepad++安裝目錄下的plugins\APIs目錄(例如:D:\Program Files\Notepad++\plugins\APIs);
4、重啟notepad++;
三、設定go語言編譯運行快速鍵
這裡用下面的代碼做示範:
檔案名稱:test1.go
package main
import "fmt"
func main() {
fmt.Println("Test")
}
原理:
編譯:8g -o test1.8 test1.go
連結:8l -o test1.exe test1.8
運行:test1.exe
編譯連結運行:8g -o test1.8 test1.go & 8l -o test1.exe test1.8 & test1.exe
具體實施:
1、用notepad++開啟test1.go檔案;
2、按F5,在彈出的對話方塊中輸入以下內容:
cmd /k 8g.exe -o tmp.8 "$(FULL_CURRENT_PATH)" & 8l.exe -o tmp.exe tmp.8 & del tmp.8 & tmp.exe & PAUSE & del tmp.exe & EXIT
儲存為"Run Go",並設定Ctrl+F6為快速鍵;
3、按Ctrl+F6運行程式;
好,就這些了,希望對你有協助。