Skip to content

Commit 261e9b4

Browse files
authored
Merge pull request #33 from chaploud/master
Change `cpt.showCommands` command's prefix `>CPT` to `>[CPT]` for more accurate filtering * Fixes #32
2 parents 40eb0ad + e6075e7 commit 261e9b4

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Changes to Calva Power Tools
44

55
## [Unreleased]
66

7+
- [Change cpt.showCommands prefix](https://github.com/BetterThanTomorrow/calva-power-tools/issues/32)
8+
79
## [v0.0.9] - 2025-05-16
810

911
- [Add Dataspex tool](https://github.com/BetterThanTomorrow/calva-power-tools/issues/29)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The default way of progress for a change to this project is:
1616

1717
We prefer that each pull request is focused on one problem at the time. Even if sometimes related Issues can be addressed by the same changes.
1818

19-
As part of your PR you update the `**[Unrelased]**` section of CHANGELOG.md, linking to the issue(s) addressed. WHen a new version of the extension is released a changelog entry will be created with everything that is in the unreleased section. The Changelog should read like a story of how the extension has evolved since its creation.
19+
As part of your PR you update the `**[Unreleased]**` section of CHANGELOG.md, linking to the issue(s) addressed. WHen a new version of the extension is released a changelog entry will be created with everything that is in the unreleased section. The Changelog should read like a story of how the extension has evolved since its creation.
2020

2121
When you file a pull request some CI jobs will run:
2222

src/calva_power_tools/extension.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
(defn show-commands!
1616
([]
17-
(vscode/commands.executeCommand "workbench.action.quickOpen" ">CPT "))
17+
(vscode/commands.executeCommand "workbench.action.quickOpen" ">[CPT] "))
1818
([s]
19-
(vscode/commands.executeCommand "workbench.action.quickOpen" (str ">CPT " s " "))))
19+
(vscode/commands.executeCommand "workbench.action.quickOpen" (str ">[CPT] " s " "))))
2020

2121
(defn ^:export activate [context]
2222
(js/console.time "activation")

0 commit comments

Comments
 (0)