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

46 lines
1.5 KiB
EmacsLisp
Raw Normal View History

;;==============================================================================
;; Go
;;==============================================================================
;; Packages: go-rename,
;; Optional packages: go-autocomplete, go-guru
2015-12-09 01:02:23 +01:00
(defun go-eval-buffer ()
"Eval buffer with `go run'."
(interactive)
(let ((compile-command-backup compile-command))
(compile (concat "go run " (shell-quote-argument buffer-file-name)))
(setq compile-command compile-command-backup)))
(defun go-file-in-gopath-p ()
(let ((dir (expand-file-name (file-name-directory buffer-file-name))) (looping t) (gopath (getenv "GOPATH")))
(while (progn
(if (string= dir gopath)
(setq looping nil)
(setq dir (expand-file-name ".." dir)))
(and looping (not (string= dir "/")))))
(if (string= dir "/") nil t)))
(add-hook-and-eval
'go-mode-hook
(lambda ()
(setq gofmt-command "goimports")
(add-hook 'before-save-hook #'gofmt-before-save nil t)
(local-set-key (kbd "C-c m") 'go-main)
2015-12-09 01:02:23 +01:00
(local-set-key (kbd "C-c d") 'godoc)
(local-set-key (kbd "M-.") #'godef-jump)
(local-set-key (kbd "C-<f10>") 'go-eval-buffer)
(set (make-local-variable 'compile-command) (if (go-file-in-gopath-p) "go install" "go build"))))
(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)