From b6c2efa78b7bc0db4277e2cc5a6765ca5332686e Mon Sep 17 00:00:00 2001 From: Billie Cleek Date: Sat, 13 Jun 2020 15:53:25 -0700 Subject: [PATCH] update CHANGELOG.md for #2917 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 822b8506a8..05d0386ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ IMPROVEMENTS: * Default `g:go_gopls_options` to `[-remote=auto]` to share gopls instances with other plugins and multiple instances of Vim. [[GH-2905]](https://github.com/fatih/vim-go/pull/2905) +* Use the module root as the working directory when renaming so that all + references to the symbol will be renamed when in module aware mode and + `g:go_rename_command` is set to `gopls`. + [[GH-2917]](https://github.com/fatih/vim-go/pull/2917) BUG FIXES: * Fix call to non-existent function in terminal mode edge case.