Questions tagged [google-go-idea-plugin]

The open-source Go plugin for JetBrains IDEs like IntelliJ IDEA, PHPStorm, WebStorm and so on. It works on both payed and free versions of the IDEs and tries to meet the expectations that an IntelliJ platform user from a language plugin as well as help people in their daily development activity using Go.

The plugin is available for free in the official plugin manager. While there are a couple of things to iron out, the plugin itself won't be considered stable until version 1.0 is released, it can already be used on production code, having most of the features of its competitors as well as bringing new ones to the table.

Combined with the free version of IntelliJ IDEA, the Community Edition, it will offer a powerful addition to those who seek to develop in Go both for normal applications and for Go on Google AppEngine websites.

Bug reports can be submitted at this address https://github.com/go-lang-plugin-org/go-lang-idea-plugin and the team is usually very fast in addressing any issue that comes up.

4 questions
25
votes
8 answers

"The selected directory is not a valid home for Go Sdk"

I'm using IntelliJ Idea, and the google-go-lang-idea-plugin from: https://github.com/mtoader/google-go-lang-idea-plugin/issues/173 When I try to add my APT provided Go installation to the Go SDK list, I get the following error I have tried adding…
Thomas
  • 11,757
  • 4
  • 41
  • 57
3
votes
1 answer

golang-idea-plugin: how to set project-specific GOPATH?

I'm trying to migrate from Goclipse dev environment to IDEA. Could not find a killing feature in golang-idea-plugin, that exists in Goclipse - each GO project automatically adds itself as a GOPATH item for Eclipse session, so I don't have to put it…
snuk182
  • 1,022
  • 1
  • 12
  • 28
0
votes
2 answers

How to attach IntelliJ Go debugger to local process

I'm coding in Go using IntelliJ IDEA with Go plugin. I am working on a project that uses gocui, which doesn't work in IntelliJ console window. So I run my program from console. How can I attach this wonderful IntelliJ debugger to the process that…
aQaTL
  • 31
  • 1
  • 5
-1
votes
1 answer

GoLang String Parameters Printing

I have a sql select statement like this example: queryValues = make([]interface{}, 0, 5) queryValues = append(Name, obj.Name) queryValues = append(Age, obj.Age) whereClause := "where name = $1 and age = $2" query := fmt.Sprintf("Select * from…
Josh
  • 569
  • 1
  • 11
  • 35