helm sources for Go programming language's package.
- helm
- go-mode
- deferred
- in accordance with helm, Emacs-24.4 or later versions.
Just drop helm-go-package.el
. somewhere in your load-path
.
(add-to-list 'load-path "~/somewhere")
you can install helm-go-package.el
from the MELPA repository.
Helm for Go programming language's package.
These actions are available.
- Add a new import
- Add a new import as
- Show documentation
- Display GoDoc
- Visit package's directory
This persistent action is available.
- Show documentation
These actions are available.
- Download and install
- Display GoDoc
Function to display package documentation on GoDoc. It is browse-url
by default.
Face used for Godoc description.
Add the following to your emacs init file:
(autoload 'helm-go-package "helm-go-package") ;; Not necessary if using ELPA package
(eval-after-load 'go-mode
'(substitute-key-definition 'go-import-add 'helm-go-package go-mode-map))