Created
December 1, 2018 16:43
-
-
Save mrvdb/8078e08d5f51b1522a2798897ea1b90b to your computer and use it in GitHub Desktop.
This file contains 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
== Go == | |
Go has commonly used helper programs `godoc' and `godef' which can be used to find documentation | |
and source definitions. | |
An example of how to enable `C-h f' as context sensitive help function: | |
{{{ | |
;; https://github.com/dominikh/go-mode.el | |
(use-package go-mode | |
:config | |
:bind (:map go-mode-map | |
("C-h f" . godoc-at-point))) | |
}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment