emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/go-mode fa26932786: README: 'go install' instead of 'go ge


From: ELPA Syncer
Subject: [nongnu] elpa/go-mode fa26932786: README: 'go install' instead of 'go get' for tools
Date: Tue, 5 Apr 2022 09:58:19 -0400 (EDT)

branch: elpa/go-mode
commit fa2693278637f56759480d2bf203bb8aad107230
Author: Sam Waggoner <samwagg0583@gmail.com>
Commit: Dominik Honnef <dominik@honnef.co>

    README: 'go install' instead of 'go get' for tools
    
    'go get' was deprecated for executable installation.
    
    Closes: gh-402 [via git-merge-pr]
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 854450cce8..283cfb7a67 100644
--- a/README.md
+++ b/README.md
@@ -41,8 +41,8 @@ the following extra features to provide an improved 
experience:
   - `godef-describe` (`C-c C-d`) to describe expressions
   - `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
-  github.com/rogpeppe/godef`.
+  - This requires you to install godef via `go install
+  github.com/rogpeppe/godef@latest`.
 - Basic support for imenu (functions and variables)
 - Built-in support for displaying code coverage as calculated by `go
   test` (`go-coverage`)
@@ -117,7 +117,7 @@ longer be supported.
 Gopls is a supported backend for
 [lsp-mode](https://github.com/emacs-lsp/lsp-mode). It will be used
 automatically by lsp-mode if `gopls` is found in your PATH. You can
-install gopls via: `go get golang.org/x/tools/gopls@latest`. To enable
+install gopls via: `go install golang.org/x/tools/gopls@latest`. To enable
 lsp-mode for go buffers:
 
     (add-hook 'go-mode-hook 'lsp-deferred)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]