Sublime Text 2搭建Go開發環境,代碼提示+補全+調試

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

本文轉自:http://blog.csdn.net/lvanneo/article/details/22681815,並做部分修改。

本文在已安裝Go環境的前提下繼續。

1、安裝Sublime Text 2

2、安裝Package Control。

運行Sublime,按下 Ctrl+`(`在Tab鍵上邊),然後輸入以下內容:

import urllib2,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')

3、安裝GoSublime、GoGDB

1)重啟Sublime,然後從功能表列中開啟  Perferences->Package Control,或者按Ctrl+Shift+P開啟。

2)在Package Control 中輸入 :install,選中 Package Control: Install Package 後確定。

3)接著輸入:GoSublime  後確定,留意狀態列等待安裝完畢。

4)重複第二步操作後輸入:GoGDB  後確定。

(GoSublime、GoGDB這兩個外掛程式已能滿足一般的編寫和調試需要,如果還需要其他的外掛程式可仿照第二、三步進行添加)

4、配置GoSublime

從菜單中開啟 Perferences->Package Settings->GoSublime->Settings-Default ,

會開啟GoSublime的settings檔案,在 "env":{} 的{}中添加go的安裝路徑,如下:

"env": {      "path":"D:\\GO\\bin"  },  

5、配置GoGDB

從菜單中開啟 Perferences->Package Settings->GoGDB->Settings-Default ,

會開啟GoGDB的settings檔案,找到"workingdir"和"commandline"所在位置,

指定好開放項目的路徑及執行檔案名稱,如下:

"workingdir": "D:/GoPath","commandline": "gdb --interpreter=mi ./main.exe",
至此,所有配置完成。

6、安裝gocode

可參考https://github.com/nsf/gocode/文檔

在控制台中輸入如下內容(要求已安裝Go和Git),編譯gocode:

在Windows下控制台中輸入:go get -u -ldflags -H=windowsgui github.com/nsf/gocode在Mac下控制台中輸入:go get -u github.com/nsf/gocode  go install github.com/nsf/gocode

把產生的gocode.exe放到%GOROOT%\bin下。

7、安裝gdb

這個我也不懂,網上下載一個好了。但是,不管是32位的還是64位的,名字都改為gdb.exe,放到%GOROOT%\bin下。

這裡我準備了一個 gdb.exe 和 gocode.exe,以及本文教程,打包下載。

8、GoGDB使用教程

Launch with F5
Step over with F10
Step into with F11
Step out with Shift+F11

更多操作請參考:https://github.com/quarnster/SublimeGDB

註:GoGdb是基於SublimeGDB修改的,使用方法相同。

9、開始寫一個

  1. package main  
  2.   
  3. import (  
  4.     "fmt"  
  5. )  
  6.   
  7. func main() {  
  8.     sum := 0  
  9.     for i := 0; i < 10; i++ {  
  10.         sum += i  
  11.     }  
  12.     fmt.Println(sum)  
  13. }  
然後,Ctrl+B ,輸入編譯指令: go build -gcflags "-N -l" gotest.go  

(註:參數 -gcflags "-N -l" 必須添加,調試需要關閉內聯最佳化)


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.