Add go-oracle recipe

This commit is contained in:
Doug MacEachern 2014-01-08 12:31:09 -08:00
parent 7d1efbf37a
commit 5a98bbb85f

9
recipes/go-oracle.rcp Normal file
View File

@ -0,0 +1,9 @@
(:name go-oracle
:description "Integration of the Go 'oracle' analysis tool into Emacs"
:type go
:pkgname "code.google.com/p/go.tools/cmd/oracle"
:load-path "src/code.google.com/p/go.tools/cmd/oracle"
:post-init (progn
(setq go-oracle-command (concat default-directory "bin/oracle"))
(autoload 'go-oracle-mode "oracle")
(add-hook 'go-mode-hook 'go-oracle-mode)))