2015-04-19 03:40:24 +00:00
|
|
|
(setq go-packages
|
2015-10-26 13:57:33 +00:00
|
|
|
'(
|
|
|
|
company
|
|
|
|
company-go
|
|
|
|
flycheck
|
|
|
|
go-mode
|
|
|
|
go-eldoc
|
|
|
|
))
|
2015-01-09 06:08:07 +00:00
|
|
|
|
2015-04-11 02:23:16 +00:00
|
|
|
(defun go/post-init-flycheck ()
|
2015-12-09 11:29:19 +00:00
|
|
|
(spacemacs/add-flycheck-hook 'go-mode-hook))
|
2015-01-10 04:09:16 +00:00
|
|
|
|
2015-01-09 06:08:07 +00:00
|
|
|
(defun go/init-go-mode()
|
2016-01-10 20:59:42 +00:00
|
|
|
(dolist (var '("GOPATH" "GO15VENDOREXPERIMENT"))
|
|
|
|
(unless (getenv var)
|
|
|
|
(exec-path-from-shell-copy-env var)))
|
2015-06-06 17:28:54 +00:00
|
|
|
|
2015-01-09 06:08:07 +00:00
|
|
|
(use-package go-mode
|
|
|
|
:defer t
|
2015-01-19 08:01:00 +00:00
|
|
|
:config
|
2015-04-04 04:34:03 +00:00
|
|
|
(progn
|
2015-01-19 08:01:00 +00:00
|
|
|
(add-hook 'before-save-hook 'gofmt-before-save)
|
2015-04-04 04:34:03 +00:00
|
|
|
|
2015-10-26 13:57:33 +00:00
|
|
|
(defun spacemacs/go-run-tests (args)
|
|
|
|
(interactive)
|
|
|
|
(save-selected-window
|
|
|
|
(async-shell-command (concat "go test " args))))
|
|
|
|
|
2015-04-04 04:34:03 +00:00
|
|
|
(defun spacemacs/go-run-package-tests ()
|
|
|
|
(interactive)
|
2015-10-26 13:57:33 +00:00
|
|
|
(spacemacs/go-run-tests ""))
|
|
|
|
|
|
|
|
(defun spacemacs/go-run-package-tests-nested ()
|
|
|
|
(interactive)
|
|
|
|
(spacemacs/go-run-tests "./..."))
|
|
|
|
|
|
|
|
(defun spacemacs/go-run-test-current-function ()
|
|
|
|
(interactive)
|
|
|
|
(if (string-match "_test\\.go" buffer-file-name)
|
|
|
|
(let ((test-method (if go-use-gocheck-for-testing
|
|
|
|
"-check.f"
|
|
|
|
"-run")))
|
|
|
|
(save-excursion
|
|
|
|
(re-search-backward "^func[ ]+([[:alnum:]]*?[ ]?[*]?\\([[:alnum:]]+\\))[ ]+\\(Test[[:alnum:]]+\\)(.*)")
|
|
|
|
(spacemacs/go-run-tests (concat test-method "='" (match-string-no-properties 2) "'"))))
|
|
|
|
(message "Must be in a _test.go file to run go-run-test-current-function")))
|
|
|
|
|
|
|
|
(defun spacemacs/go-run-test-current-suite ()
|
|
|
|
(interactive)
|
|
|
|
(if (string-match "_test\.go" buffer-file-name)
|
|
|
|
(if go-use-gocheck-for-testing
|
|
|
|
(save-excursion
|
|
|
|
(re-search-backward "^func[ ]+([[:alnum:]]*?[ ]?[*]?\\([[:alnum:]]+\\))[ ]+\\(Test[[:alnum:]]+\\)(.*)")
|
|
|
|
(spacemacs/go-run-tests (concat "-check.f='" (match-string-no-properties 1) "'")))
|
|
|
|
(message "Gocheck is needed to test the current suite"))
|
|
|
|
(message "Must be in a _test.go file to run go-test-current-suite")))
|
2015-04-04 04:34:03 +00:00
|
|
|
|
2015-10-22 19:22:26 +00:00
|
|
|
(defun spacemacs/go-run-main ()
|
|
|
|
(interactive)
|
|
|
|
(shell-command
|
|
|
|
(format "go run %s"
|
|
|
|
(shell-quote-argument (buffer-file-name)))))
|
|
|
|
|
2015-11-27 20:35:24 +00:00
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "me" "playground")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "mg" "goto")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "mh" "help")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "mi" "imports")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "mt" "test")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'go-mode "mx" "execute")
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'go-mode
|
|
|
|
"hh" 'godoc-at-point
|
|
|
|
"ig" 'go-goto-imports
|
|
|
|
"ia" 'go-import-add
|
|
|
|
"ir" 'go-remove-unused-imports
|
|
|
|
"eb" 'go-play-buffer
|
|
|
|
"er" 'go-play-region
|
|
|
|
"ed" 'go-download-play
|
|
|
|
"xx" 'spacemacs/go-run-main
|
|
|
|
"ga" 'ff-find-other-file
|
|
|
|
"gg" 'godef-jump
|
|
|
|
"tt" 'spacemacs/go-run-test-current-function
|
|
|
|
"ts" 'spacemacs/go-run-test-current-suite
|
|
|
|
"tp" 'spacemacs/go-run-package-tests
|
|
|
|
"tP" 'spacemacs/go-run-package-tests-nested))))
|
2015-01-12 04:22:23 +00:00
|
|
|
|
|
|
|
(defun go/init-go-eldoc()
|
2015-10-26 13:57:33 +00:00
|
|
|
(add-hook 'go-mode-hook 'go-eldoc-setup))
|
2015-01-19 08:01:00 +00:00
|
|
|
|
2015-04-03 23:13:52 +00:00
|
|
|
(when (configuration-layer/layer-usedp 'auto-completion)
|
2015-04-09 03:57:22 +00:00
|
|
|
(defun go/post-init-company ()
|
|
|
|
(spacemacs|add-company-hook go-mode))
|
|
|
|
|
2015-04-03 21:12:56 +00:00
|
|
|
(defun go/init-company-go ()
|
|
|
|
(use-package company-go
|
2015-04-09 03:57:22 +00:00
|
|
|
:if (configuration-layer/package-usedp 'company)
|
2015-04-03 21:12:56 +00:00
|
|
|
:defer t
|
2015-04-09 03:57:22 +00:00
|
|
|
:init
|
2015-04-30 03:54:30 +00:00
|
|
|
(push 'company-go company-backends-go-mode))))
|