Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not asking for the best one, or which is better, because such questions usually have no answers, but I ask for any ide/editor for Go, mature enough to provide me following:

  • syntax highlight
  • dynamic inline help / substitution
  • dynamic checking the code (without need to recompile it)
  • refactoring
  • not bound to a specific build tool / naming convention

Are there any?

share|improve this question
3  
List of plugins/syntax highlighters: go-lang.cat-v.org/text-editors – tm1rbrt Dec 22 '10 at 12:42

closed as not constructive by casperOne Oct 2 '12 at 11:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 5 down vote accepted

This site shows how to set gedit up to be used as a go IDE.

http://gohelp.wordpress.com/gedit-an-ide-for-go/

Personally I'm just using gedit with syntax highlighting for Go at the moment, but i might try to do some of the stuff from that link at some point.

share|improve this answer

Here's a list of editors/ide's from: link text (links to sites on this page)

Go Syntax Highlighting and Other Text Editors and IDEs Extensions
The Go distribution already includes some syntax files and modes:

  • go/misc/emacs/ - A Go Emacs mode.
  • go/misc/vim/ - Go Vim syntax file. See this page for installation instructions, and other Go+Vim resources.
  • go/misc/xcode/go.pbfilespec - Go source file spec for Xcode 3.
  • go/misc/xcode/go.xclangspec - Go language specification for Xcode 3.
  • go/misc/kate/go.xml - Go syntax highlighting file for KDS's Kate text editor and other applications that use the KatePart component.
  • go/misc/bbedit/Go.plist - Go syntax coloring and function navigation for BBEdit/TextWrangler.

  • BBedit and TextWrangler, a syntax file is now also included in the standard Go distribution at go/misc/bbedit/.

  • Eclipse plugins.
  • IntelliJ IDEA plugin.
  • Gedit and other GtkSourceView based editors.
  • Mcedit.
  • Textmate.
  • JEdit.
  • SciTE.
  • Notepad++.

Syntax Highlighting for Non-Editors
Go syntax highlighting for code listings in documents, web pages, etc.

  • shBrushGo.js - A Go 'brush' for Alex Gorbatchev's SyntaxHighlighter. By Allister Sanchez.
  • lstlang0.sty - A LaTeX code listings highlighter. By Uriel Corfa. See Also
  • Acme and sam: the text editors used by some of the main Go developers. While designed by Rob Pike primarily for programming tasks, they don't require any language-specific support, code is just text!
  • In the dev utils page you can find ETag (exuberant-ctags) generation tools to use with any environment that can handle them.

IDEs
- gogo - A primitive IDE for Linux written in Lazarus/Free Pascal, not open source (yet). By Mike Parr.

share|improve this answer

Sublime Text 2 + gocode + GoSublime might be a nice solution.

Sublime Text 2 is a very nice cross platform text editor with rich plug-ins.

share|improve this answer
Hey, Do you know how to integrate Gocode and GoSublime ? Thanks – MrROY Aug 31 '12 at 4:26
@MrRoy: There are instructions at github.com/DisposaBoy/GoSublime – Ask Bjørn Hansen Aug 31 '12 at 6:00

The latest version of the Zeus editor now has support for the Go language

share|improve this answer
3  
Zeus seems to be windows only one? – Shaman May 21 '12 at 9:13
Shaman you are correct. Zeus is a Windows only option. – jussij May 21 '12 at 9:20
3  
+1 The Go language supports is pretty good. I love the autocomplete. – Blake7 Jul 17 '12 at 5:35
2  
I just tried running Zeus on Ubuntu using Wine and it ran fine :) – mrsheen Sep 14 '12 at 2:15

There is link text for Intellij IDEA. It is not perfect, but works well enough considering that the language is still very new.

share|improve this answer

There is an IntelliJIDEA "mod" that pretty much kills everything else. Check it out at http://go-ide.com/. I tried Vim and Emacs, but somehow they didn't worked for me. But this one work out-of-the-box. You don't even need to compile anything.

share|improve this answer
Requires Java. I was searching for a solution to get away of Java. – chmike Mar 30 at 13:07

Just installed the IntelliJ community version with the golang plugin.

Just a couple of clicks and you'are compiling and running go code.

Great work from Google Go IDE, I just need to find the best way to debug the code (breakpoints, ...).

Anyone with info on this topic?

share|improve this answer

There is an eclipse plugin for go, but i don't know how stable it is yet. There are also some syntax files for vim

share|improve this answer
eclipse plugin depends on a strange directory structure, and it's not possible to reconfigure it (it allows me to reconfigure project, but it makes plugin insane). And I was never able to run a program in it, even a "hello world" – Shaman Dec 22 '10 at 10:01

Just putting my two cents in. As the others said there is no especially designed IDE for Go at the moment. Moreover, I wouldn't expect a fully fledged Go IDE to come any day now. The leading reason is the immaturity of Go as a programming language, its small community (but growing) and hence pretty vague interest from reputable IDE developers, like JetBrains.

I used several tools to write Go code, such as plugins for Eclipse and IntelliJ IDEA. Put them away very soon as I can handle intricate problems, but hate woodoo to make simple things work. The rest of my Go projects was done with Gedit/SciTE editor and primitive shell scripts.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.