diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-09-16 17:04:34 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-09-16 17:04:34 -0700 |
commit | f60081c59d6963d43bc0d3f5d056d8635f9995f1 (patch) | |
tree | d4c655817ce691f9b50ccf6dcbd2357226e66158 /emacs | |
parent | [emacs] start using elfeed. (diff) | |
download | emacs.d-f60081c59d6963d43bc0d3f5d056d8635f9995f1.tar.gz |
[emacs] fix hydra menu
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-go.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-go.el b/emacs.d/custom/fcuny-go.el index 9c16a6e..f2e9443 100644 --- a/emacs.d/custom/fcuny-go.el +++ b/emacs.d/custom/fcuny-go.el @@ -48,7 +48,7 @@ _r_: referrers _d_: definition _T_: test current test _i_: implements _a_: arguments _F_: test current file _D_: describe _f_: function _P_: test current package - _r_: return + _R_: return " ("r" go-guru-referrers) ("i" go-guru-implements) @@ -56,6 +56,7 @@ _D_: describe _f_: function _P_: test current package ("d" go-guru-definition) ("a" go-goto-arguments) ("f" go-goto-function) + ("R" go-goto-return-values) ("T" go-test-current-test) ("F" go-test-current-file) ("P" go-test-current-project) |