branch: elpa/go-mode
commit 5d53a13bd193653728e74102c81aa931b780c9a9
Author: Dominik Honnef <[email protected]>
Commit: Dominik Honnef <[email protected]>
Update import path of godef
Thanks to Yesudeep Mangalapilly for the reminder.
Closes gh-93
---
README.md | 2 +-
go-mode-autoloads.el | 2 +-
go-mode.el | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 5183f43..6e5a780 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ the following extra features to provide an improved
experience:
- `godef-jump` (`C-c C-j`) and `godef-jump-other-window` (`C-x 4 C-c
C-j`) to jump to declarations
- This requires you to install godef via `go get
- code.google.com/p/rog-go/exp/cmd/godef`.
+ github.com/rogpeppe/godef`.
- Basic support for imenu (functions and variables)
- Built-in support for displaying code coverage as calculated by `go
test` (`go-coverage`)
diff --git a/go-mode-autoloads.el b/go-mode-autoloads.el
index e5c6c99..96b27d8 100644
--- a/go-mode-autoloads.el
+++ b/go-mode-autoloads.el
@@ -50,7 +50,7 @@ for `find-tag':
Please note that godef is an external dependency. You can install
it with
-go get code.google.com/p/rog-go/exp/cmd/godef
+go get github.com/rogpeppe/godef
If you're looking for even more integration with Go, namely
diff --git a/go-mode.el b/go-mode.el
index 88709b0..820870c 100644
--- a/go-mode.el
+++ b/go-mode.el
@@ -866,7 +866,7 @@ for `find-tag':
Please note that godef is an external dependency. You can install
it with
-go get code.google.com/p/rog-go/exp/cmd/godef
+go get github.com/rogpeppe/godef
If you're looking for even more integration with Go, namely