You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@ If you are interested in contributing to this repository, then you need to follo
25
25
26
26
This package provides 3 items to the command palette.
27
27
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.
29
29
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.
31
31
3.`CommandsBrowser: Browse available plugin/package commands.`
32
32
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.
33
33
@@ -87,6 +87,17 @@ For a list of valid modifier key values, see https://www.sublimetext.com/docs/ap
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
+
90
101
### Key bindings.
91
102
92
103
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