diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-go.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-go.el b/emacs.d/custom/fcuny-go.el index 4484b6e..032f794 100644 --- a/emacs.d/custom/fcuny-go.el +++ b/emacs.d/custom/fcuny-go.el @@ -24,6 +24,10 @@ (use-package gotest :ensure t - :after go-mode) + :after go-mode + :bind (:map go-mode-map + ("C-c ." . go-test-current-test) + ("C-c f" . go-test-current-file) + ("C-c a" . go-test-current-project))) (provide 'fcuny-go) |