windows下用notepad++配置go語言開發環境

來源:互聯網
上載者:User

我在前一篇文章(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運行程式;

好,就這些了,希望對你有協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.