Skip to content

Instantly share code, notes, and snippets.

@mrvdb
Created December 1, 2018 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrvdb/8078e08d5f51b1522a2798897ea1b90b to your computer and use it in GitHub Desktop.
Save mrvdb/8078e08d5f51b1522a2798897ea1b90b to your computer and use it in GitHub Desktop.
== 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