Re: [go-nuts] Offline Go Documentation Tools

2017-08-10 Thread Christoph Berger
> > Is Visual Studio Code a .Net app that takes up lots of memory and CPU? > Worse, it's an Electron app :) I use VSC on an old 2012 Mac Mini, and I cannot confirm that it consumes lots of CPU or memory, even with about two dozen extension installed. It is fast and responsive (some say it is

Re: [go-nuts] Offline Go Documentation Tools

2017-08-09 Thread Tyler Compton
> Is Visual Studio Code a .Net app that takes up lots of memory and CPU? Worse, it's an Electron app :) I don't personally use VSC, so I can't speak to its performance or efficiency. However, LSP is currently supported at some level in Neovim using a plugin, and first-class support is planned.

Re: [go-nuts] Offline Go Documentation Tools

2017-08-07 Thread me
On Monday, July 24, 2017 at 2:52:48 PM UTC-6, Rob 'Commander' Pike wrote: > > The "go doc" (distinct from "godoc") command works fine offline. It fact > it never goes on line. > > -rob > > That's a good tip, I might be even able to use that and pipe it into an editor Memo/Edit widget for

Re: [go-nuts] Offline Go Documentation Tools

2017-08-07 Thread me
On Monday, July 24, 2017 at 10:46:31 AM UTC-6, Tyler Compton wrote: > > For cursor-sensitive help dialogs, you may find Language Server > Protocol[1] interesting. It provides what you're looking for in Visual > Studio Code with Go today, and will help provide that functionality to > editors

Re: [go-nuts] Offline Go Documentation Tools

2017-07-24 Thread Rob Pike
The "go doc" (distinct from "godoc") command works fine offline. It fact it never goes on line. -rob On Tue, Jul 25, 2017 at 2:45 AM, Tyler Compton wrote: > For cursor-sensitive help dialogs, you may find Language Server > Protocol[1] interesting. It provides what you're

Re: [go-nuts] Offline Go Documentation Tools

2017-07-24 Thread Tyler Compton
For cursor-sensitive help dialogs, you may find Language Server Protocol[1] interesting. It provides what you're looking for in Visual Studio Code with Go today, and will help provide that functionality to editors like [Neo]vim in the future. 1. http://langserver.org/ On Mon, Jul 24, 2017 at

Re: [go-nuts] Offline Go Documentation Tools

2017-07-24 Thread andrey mirtchovski
> What do you use to read documentation when you are offline? godoc -http=:6060 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[go-nuts] Offline Go Documentation Tools

2017-07-24 Thread me
Sometimes I want to disconnect my laptop or computer from the internet and work with go.. What do you use to read documentation when you are offline? Here is some brief research I did: http://www.andybritcliffe.com/post/44610795381/offline-go-lang-documentation That appears to be one solution.