From eaeb495b182004d0835d858b398fb63ba373433a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 2 Feb 2018 04:26:00 -0500 Subject: [PATCH] lang/go: show annotations in code-completion popups --- modules/lang/go/config.el | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/lang/go/config.el b/modules/lang/go/config.el index e5761f16d..ec21d708f 100644 --- a/modules/lang/go/config.el +++ b/modules/lang/go/config.el @@ -91,6 +91,7 @@ :when (featurep! :completion company) :after go-mode :config + (setq company-go-show-annotation t) (if (executable-find command-go-gocode-command) (set! :company-backend 'go-mode '(company-go)) (warn "go-mode: couldn't find gocode, code completion won't work")))