Questions tagged [liteide]

LiteIDE is a simple, open source, cross-platform Go IDE.

LiteIDE is a simple, open source, cross-platform Go IDE.

Features

  • Core Features

    • System environment management
    • Configurable build commands
    • Simple and open debug system
    • Kate format for auto-completion and theming
    • Configurable auto-completion with WordApi
    • MIME type based system
    • Plugin support
  • Golang Support

    • Package browser
    • Class view and outline
    • Document browser
    • Gocode support
    • GOPATH API index
    • View Expression Info
    • Jump to Declaration
    • Find Usages
    • Code Refactor
    • Go playground
  • Markdown Support

    • Live preview and synchronized scroll
    • Custom CSS with themes from Mou
    • Export Markdown as HTML or PDF
    • Markdown batch conversion with optional merging
  • Golang Present Support

    • Present syntax editor
    • Auto verify at save time
    • Export to html
  • References

30 questions
31
votes
2 answers

My go binaries end up in the src folder

My binaries end up in the src folder and I have no idea why. I want them to end up in gopath/bin (since that is the default? and since I don't want binaries on git). The packages end up in gopath/pkg with their binaries in their respective folder. I…
Filip Haglund
  • 13,919
  • 13
  • 64
  • 113
9
votes
2 answers

How to link GOPATH to LiteIDE?

I've installed LiteIde and exported GOROOT and GOPATH in my .bashrc. When I use LiteIDE, the auto-completion works just fine, but it can't build/run my code. When I look at 'Manage GOPATH', the System GOPATH box is empty, and I can't type into it…
tldr
  • 11,924
  • 15
  • 75
  • 120
7
votes
5 answers

Does LiteIDE x14 work at all?

I'm trying out LiteIDE for golang and there are no docs to speak of and apparently no forum. I've set the Env for my environment and go installation. When I try to use it on the hello.go file (as a file or a a project) all I get is
Dean Schulze
  • 9,633
  • 24
  • 100
  • 165
6
votes
7 answers

LiteIDE won't run code after building, Process failed to start

About a week ago I installed golang successfully on my computer and got it's terminal commands to process. So by that, I know go is on my computer. I have been looking for a good IDE and found https://code.google.com/p/liteide/ LiteIDE which was…
Andrew
  • 3,393
  • 4
  • 25
  • 43
5
votes
1 answer

How to use LiteIDE for a Go project?

I've installed the LiteIDE IDE for Go. I create a new Go project, but I when I try to run it I get: I guess I need…
Blacksad
  • 14,906
  • 15
  • 70
  • 81
3
votes
1 answer

liteide setting GOROOT to GOPATH when run

In the middle of a development session, this stupid behavior started and now it looks permanent. I have no idea what happened: [dtrombley@sleet bin]$ echo $GOROOT /usr/lib/golang [dtrombley@sleet bin]$ echo…
BadZen
  • 4,083
  • 2
  • 25
  • 48
3
votes
2 answers

LiteIDE GDB with Golang

I installed LiteIDE and GDB. I opened my Go project in LiteIDE and added a breakpoint to some point in the code. Then i switched back to terminal and ran the project binary that was supposed to envoke the breakpoint and nothing happened. What am i…
llSourcell
  • 29
  • 1
  • 2
3
votes
4 answers

LiteIDE no autocomplete

I'm trying to use LiteIDE (the Go IDE) on Linux 32-bit. Everything works except for autocomplete. Builds, running, everything works. The gocode binary seems to be running tho: ithisa@miyasa ~> ps aux | grep gocode ithisa 10003 0.0 0.0 823788 …
ithisa
  • 752
  • 1
  • 8
  • 25
2
votes
0 answers

Debugging golang running under AppEngine in Liteide

I'm writing a little API using go and Google AppEngine. All of this is in Liteide and TBH after a little pain setting up, is now working beautifully well. I've got to the point where I need to start debugging in GDB, this is all signed and Liteide…
Orbittman
  • 306
  • 1
  • 6
2
votes
1 answer

Space of Tab symbol in LiteIDE

Can I adjust the space setting of tab symbol in LiteIDE. The space is different with other editors. I tried to find it but cannot find out how to adjust the space. Thanks.
Peter Hon
  • 321
  • 2
  • 6
  • 10
2
votes
1 answer

LiteIDE debug message No executable specified use target exec

Try to debug In LightIde, . However, when I start debug, the following console message appear (gdb) 10000015^error,msg="No symbol table is loaded. Use the \"file\" command." (gdb) 10000016^error,msg="No executable specified, use `target…
2
votes
2 answers

View source for Golang packages in LiteIDE

What's the easiest way to view source code of golang packages in LiteIDE? for example, when there are code like this: import "github.com/revel/revel" func init() { // Filters is the default set of global filters. revel.Filters =…
Kokizzu
  • 24,974
  • 37
  • 137
  • 233
2
votes
2 answers

LiteIDE debug go code on mac

today I installed LiteIDE on my mac with OSX 10.9. I tried to compile simple source code and it worked fine, however debugger doesn't work because of missing GDB. I installed it from MacPorts, changed darwin64.env file, and now LiteIDE runs debugger…
Lobster
  • 635
  • 2
  • 12
  • 30
1
vote
0 answers

Is there a way in Visual Studio Code to set a test file target other than the current file

I am trying to switch to VS Code from LiteIDE for developing GO code. One of the features that I used frequently in LiteIDE was the ability to pick a file, other than the current file, as the target of run or test commands. For example, I could set…
Justin Ohms
  • 3,334
  • 31
  • 45
1
vote
1 answer

How do I set up LiteIDE so that Golang identifier completion works across packages?

I am currently trying to use LiteIDE to edit golang code, and my question is about setting up LiteIDE so that identifier completion works when I have more than one package. I have a directory structure like: myProject stuff various non-Go…
Martin Ellison
  • 1,043
  • 1
  • 13
  • 25
1
2