diff --git a/CHANGELOG.md b/CHANGELOG.md index 799a6c840..6daa5ac07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Changes to Calva. ## [Unreleased] +- Fix: [Added 'replace-refer-all-with-alias' & 'replace-refer-all-with-refer' actions to calva.](https://github.com/BetterThanTomorrow/calva/issues/2667) ## [2.0.481] - 2024-10-29 diff --git a/src/lsp/commands/lsp-commands.ts b/src/lsp/commands/lsp-commands.ts index a895d3122..1d8f548ca 100644 --- a/src/lsp/commands/lsp-commands.ts +++ b/src/lsp/commands/lsp-commands.ts @@ -114,6 +114,8 @@ const clojureLspCommands: ClojureLspCommand[] = [ { command: 'move-coll-entry-down', category: 'clojureLsp.refactor' }, { command: 'move-coll-entry-up', category: 'clojureLsp.refactor' }, { command: 'move-form', category: 'clojureLsp.refactor' }, + { command: 'replace-refer-all-with-alias', category: 'clojureLsp.refactor' }, + { command: 'replace-refer-all-with-refer', category: 'clojureLsp.refactor' }, { command: 'resolve-macro-as', category: 'clojureLsp.refactor' }, { command: 'restructure-keys', category: 'clojureLsp.refactor' }, { command: 'sort-clauses', category: 'clojureLsp.refactor' },