Skip to content

Commit

Permalink
[Improvements] Use full forms instead of abbreviations.
Browse files Browse the repository at this point in the history
This commit uses full forms of ST & SM in command palette description
to make it more explicit, rather than using abbreviated forms.

This should address #5
  • Loading branch information
UltraInstinct05 committed Nov 15, 2021
1 parent f64739d commit d9f9799
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ If you are interested in contributing to this repository, then you need to follo
### How to use this package ?

This package provides 3 items to the command palette.
1. `CommandsBrowser: Browse available ST core commands.`
1. `CommandsBrowser: Browse available Sublime Text core commands.`
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.
2. `CommandsBrowser: Browse available SM core commands.`
2. `CommandsBrowser: Browse available Sublime Merge core commands.`
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.
3. `CommandsBrowser: Browse available plugin/package commands.`
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.
Expand Down
4 changes: 2 additions & 2 deletions messages/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ CommandsBrowser. To get started, open the command palette and choose
any of the following options depending on whether you are interested in
viewing core or plugin based commands.

1. CommandsBrowser: Browse available ST core commands.
2. CommandsBrowser: Browse available SM core commands.
1. CommandsBrowser: Browse available Sublime Text core commands.
2. CommandsBrowser: Browse available Sublime Merge core commands.
3. CommandsBrowser: Browse available plugin/package core commands.

Having Problems ?
Expand Down
4 changes: 2 additions & 2 deletions resources/CommandsBrowser.sublime-commands
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[
{
"caption": "CommandsBrowser: Browse available ST core commands.",
"caption": "CommandsBrowser: Browse available Sublime Text core commands.",
"command": "commands_browser_core_commands",
"args": {
"application": "st"
},
},
{
"caption": "CommandsBrowser: Browse available SM core commands.",
"caption": "CommandsBrowser: Browse available Sublime Merge core commands.",
"command": "commands_browser_core_commands",
"args": {
"application": "sm"
Expand Down

0 comments on commit d9f9799

Please sign in to comment.