Skip to content

Commit 9613265

Browse files
[Chore] Update README.
1 parent 39f8587 commit 9613265

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ If you are interested in contributing to this repository, then you need to follo
2525

2626
This package provides 3 items to the command palette.
2727
1. `CommandsBrowser: Browse available Sublime Text core commands.`
28-
This will show you all of the core commands that are present in Sublime Text. Selecting one would bring up a panel that would show the documentation for that command.
28+
This will show you all of the core commands that are present in Sublime Text. Selecting one would bring up a panel that would show the documentation for that command. You can also hold down <kbd>ctrl</kbd> while selecting a command to copy it's signature to clipboard.
2929
2. `CommandsBrowser: Browse available Sublime Merge core commands.`
30-
This will show you all of the core commands that are present in Sublime Merge. Selecting one would bring up a panel that would show the documentation for that command.
30+
This will show you all of the core commands that are present in Sublime Merge. Selecting one would bring up a panel that would show the documentation for that command. You can also hold down <kbd>ctrl</kbd> while selecting a command to copy it's signature to clipboard.
3131
3. `CommandsBrowser: Browse available plugin/package commands.`
3232
This will show you all of the plugin/package commands that are present in Sublime Text. Selecting one would open the corresponding plugin file & navigate to that location where the command class is implemented.
3333

@@ -87,6 +87,17 @@ For a list of valid modifier key values, see https://www.sublimetext.com/docs/ap
8787

8888
The default value for this setting is `"ctrl"`.
8989

90+
##### `filter_plugin_commands_on_package` (`str | List[str]`)
91+
92+
This setting allows a user to filter the plugin commands based on the package name.
93+
94+
Examples:
95+
1. `"all"` - Shows all plugin commands.
96+
2. `["PackageDev"]` - Show only `PackageDev` commands.
97+
2. `["User", "OverrideAudti"]` - Show `OverrideAudit` & `User` commands.
98+
99+
The default value for this setting is `"all"` (which is also the only valid string value this setting can take).
100+
90101
### Key bindings.
91102

92103
This package just ships with one key binding to make it easier to open the core commands documentation panel (If it exists). The key binding for that is <kbd>ctrl + shift + c, ctrl + shift + d</kbd>

0 commit comments

Comments
 (0)