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

36 lines
1011 B
EmacsLisp
Raw Normal View History

;;==============================================================================
;; Go
;;==============================================================================
(require 'go-autocomplete nil t)
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)))
(add-hook-and-eval
'go-mode-hook
(lambda ()
(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) "go install")))
(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)