Created
June 23, 2014 09:25
-
-
Save sugyan/b824a4e049848336acb4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; use "Show documentation" as 1st action | |
(eval-after-load "helm-go-package" | |
'(progn | |
(let* ((actions (helm-attr 'action helm-source-go-package)) | |
(godoc (nth 2 actions))) | |
(delete godoc actions) | |
(push godoc actions) | |
(helm-attrset 'action actions helm-source-go-package)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment