Emacs mode for Go? [closed]

白昼怎懂夜的黑 提交于 2019-12-03 03:23:37

问题


Is there a suitable Emacs mode for Go? C mode doesn't work without semicolons. The best I have found is the JavaScript mode by Karl Landstrom, since JavaScript also doesn't require semicolons.


回答1:


Try misc/emacs/go-mode.el (web link) in the Go distribution.

If you are using Emacs 24 and marmalade repo, use M-x package-install <RET> go-mode to install it directly.




回答2:


If your Go installs to /usr/local/go then add the following to your .emacs file.

;; go mode                                                                                           
(setq load-path (cons "/usr/local/go/misc/emacs" load-path))                                         
(require 'go-mode-load)



回答3:


Update from 2014 for Linux users

You can now download the golang-mode for Emacs from your package manager:

  • Fedora: yum install emacs-golang
  • Debian: apt-get install golang-mode
  • Ubuntu: apt-get install golang-mode

I only checked on Fedora, but the package is automatically installed and you have nothing to do except enjoying your new golang mode! And it is also updated as any other package of your system.

There are probably packages on other Linux distributions too.




回答4:


Read Writing Go in Emacs and its follow-up, written by Dominik Honnef, the author of the official go-mode.

There he explains the story of go-mode and ways to install it, how to read Go documentation from inside Emacs, how to manage import statements of Go files in Emacs, how to setup autocomplete, on-the-fly syntax checking, snippets, and a lot of other super useful features for developing Go in Emacs.




回答5:


Yes, there is. It is in the source code, inside the misc/emacs dir.



来源:https://stackoverflow.com/questions/1715464/emacs-mode-for-go

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!