Fix keybindings + make them more consistent

This commit is contained in:
Henrik Lissner 2017-02-28 12:11:18 -05:00
parent 45ded63278
commit 45122cdea5
9 changed files with 75 additions and 68 deletions

View file

@ -14,14 +14,14 @@
(map! :map go-mode-map
:n "gd" 'godef-jump
(:localleader
:n "k" 'godef-describe
:prefix "r"
:n "i" go-remove-unused-imports
:nv "f" gofmt
:prefix "t"
:n "r" '+go/test-run-all
:n "a" '+go/test-run-all
:n "s" '+go/test-run-package)))
:n "fh" 'godef-describe
(:prefix "r"
:n "i" go-remove-unused-imports
:nv "f" gofmt)
(:prefix "t"
:n "r" '+go/test-run-all
:n "a" '+go/test-run-all
:n "s" '+go/test-run-package))))
(def-package! company-go :after go-mode)