From d9f9799230e9cc0529fb2690e6e3dad7c13c99fe Mon Sep 17 00:00:00 2001 From: Ashwin Shenoy Date: Mon, 15 Nov 2021 19:43:03 +0530 Subject: [PATCH] [Improvements] Use full forms instead of abbreviations. 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 --- README.md | 4 ++-- messages/install.txt | 4 ++-- resources/CommandsBrowser.sublime-commands | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bdbf360..28f5186 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/messages/install.txt b/messages/install.txt index 158e6be..f1e59f6 100644 --- a/messages/install.txt +++ b/messages/install.txt @@ -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 ? diff --git a/resources/CommandsBrowser.sublime-commands b/resources/CommandsBrowser.sublime-commands index a7497cc..eea64ec 100644 --- a/resources/CommandsBrowser.sublime-commands +++ b/resources/CommandsBrowser.sublime-commands @@ -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"