ambevar-dotfiles/.emacs.d/lisp/mode-go.el

84 lines
2.7 KiB
EmacsLisp
Raw Normal View History

;; Go
2016-10-08 05:19:42 +02:00
(setq gofmt-command "goimports")
(setq godoc-command "godoc -ex")
(setq godoc-and-godef-command "godoc -ex")
(defun go-set-compile-command ()
"Set `compile-command' depending on the context.
2016-10-08 05:19:42 +02:00
- go install: file is in GOPATH and is not a test file.
- go test: file is in GOPATH and is a test file.
- go run `buffer-file-name': file is not in GOPATH.
Note that the -cover test flag is left out since it shifts line numbers."
2015-12-09 01:02:23 +01:00
(interactive)
2016-10-08 05:19:42 +02:00
(set (make-local-variable 'compile-command)
(if (go-buffer-in-gopath-p)
(if (string-match "_test.[gG][oO]$" buffer-file-name)
"go test -v -run ."
"go install")
(concat "go run " (shell-quote-argument buffer-file-name)))))
2015-12-09 01:02:23 +01:00
2016-06-03 12:04:46 +02:00
(defun go-buffer-in-gopath-p ()
(if (not buffer-file-name)
nil
(let ((dir (expand-file-name (file-name-directory buffer-file-name))) (looping t) (gopath (split-string (getenv "GOPATH") ":")))
(while (progn
(if (member dir gopath)
(setq looping nil)
(setq dir (expand-file-name ".." dir)))
(and looping (not (string= dir "/")))))
(if (string= dir "/") nil t))))
2016-10-08 05:19:42 +02:00
(defun go-metalinter ()
(interactive)
(let (compile-command)
(compile "gometalinter --cyclo-over=20 --deadline=20s -e 'declaration of err shadows' -e 'error return value not checked \\(.*\\.Close\\(\\)'")))
2016-10-08 05:19:42 +02:00
2016-10-06 14:37:53 +02:00
(when (require 'go-guru nil t)
(unless (executable-find "guru")
; Requires `call-process-to-string' from `functions'."
(require 'functions)
(setq go-guru-command
(concat (replace-regexp-in-string "\n$" "" (call-process-to-string "go" "env" "GOTOOLDIR")) "/guru"))))
(add-hook
'godoc-mode-hook
(lambda ()
(setq tab-width 8)))
2016-06-09 18:20:38 +02:00
(add-hook-and-eval
'go-mode-hook
(lambda ()
2016-10-08 05:19:42 +02:00
(add-hook 'before-save-hook #'gofmt-before-save nil t)
2016-10-06 14:37:53 +02:00
(when (require 'go-eldoc nil t)
(go-eldoc-setup))
(when (require 'company-go nil t)
(add-to-list 'company-backends 'company-go)
(company-mode)
(if (fboundp 'helm-company)
(local-set-key (kbd "M-TAB") 'helm-company)
(local-set-key (kbd "M-TAB") 'company-complete)))
(local-set-key (kbd "C-c m") 'go-main)
(local-set-key (kbd "C-c D") 'godoc)
(when (require 'helm-go-package nil t)
(local-set-key (kbd "C-c D") 'helm-go-package))
(local-set-key (kbd "C-c d") 'godoc-at-point)
2015-12-09 01:02:23 +01:00
(local-set-key (kbd "M-.") #'godef-jump)
2016-10-08 05:19:42 +02:00
(local-set-key (kbd "<f9>") 'go-metalinter)
(go-set-compile-command)))
(define-skeleton go-main
"Insert main function with basic includes."
nil
2014-10-31 13:08:44 +01:00
> "package main" "\n" \n
"import (" \n
"\"fmt\"" \n
")" > "\n" \n
2014-10-31 13:20:11 +01:00
"func main() {" \n
2014-10-31 13:08:44 +01:00
> @ _ \n
"}" > \n)
(provide 'mode-go)