diff options
| author | Laria Carolin Chabowski <laria@laria.me> | 2020-03-08 00:24:56 +0100 |
|---|---|---|
| committer | Laria Carolin Chabowski <laria@laria.me> | 2020-03-08 00:24:56 +0100 |
| commit | 446ee379019b16c32b1ba055e3afb113a013d0b6 (patch) | |
| tree | 94763142248ea2e022c2208eba53d56aeffebfd6 | |
| parent | ae25dab70b0100df4df4aada20ceecb633372be9 (diff) | |
| download | idea_caseconv-0.6.1.tar.gz idea_caseconv-0.6.1.tar.bz2 idea_caseconv-0.6.1.zip | |
Add usage information to README and plugin descriptionv0.6.1
| -rw-r--r-- | README.md | 16 | ||||
| -rw-r--r-- | build.gradle | 2 | ||||
| -rw-r--r-- | src/main/resources/META-INF/plugin.xml | 14 |
3 files changed, 29 insertions, 3 deletions
@@ -18,6 +18,22 @@ The plugin provides actions to convert to these cases: The Plugin was inspired by the [Case Conversion Plugin for SublimeText](https://packagecontrol.io/packages/Case%20Conversion). +How to use +---------- + +Select the text you want to convert and then invoke the desired action. +There are multiple ways to do this: + +- Use the menu bar: The actions of this plugin can be found in + "Edit" > "Convert Case" +- Use the Find Action feature: Bring up the "Find Action" search dialog + (default keyboard shortcut is Ctrl+Shift+A) and type the name of the + desired convert action (or type "Convert Case" to see all actions). + Tip: This search uses fuzzy matching so you can just type "camcas" for + "Convert Case: camelCase". +- Create a keyboard shortcut: Open Settings > Keymap and search for + "Convert Case" and create a keyboard shortcut for the desired action. + Contributing ------------ diff --git a/build.gradle b/build.gradle index ac1f8cb..47ffc27 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'me.laria.code' -version '0.6.0' +version '0.6.1' sourceCompatibility = 1.8 diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index d20b6a7..8711a15 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,7 +1,7 @@ <idea-plugin> <id>me.laria.code.idea_caseconv</id> <name>Case conversion</name> - <version>0.6.0</version> + <version>0.6.1</version> <vendor email="laria@laria.me" url="https://code.laria.me">Laria Chabowski</vendor> <description><![CDATA[<html> @@ -19,10 +19,20 @@ <li>Title Case</li> <li>dot.case</li> </ul> + <p>How to use:</p> + <p>Select the text you want to convert and then invoke the desired action. There are multiple ways to do this:</p> + <ul> + <li>Use the menu bar: The actions of this plugin can be found in “Edit” > “Convert Case”</li> + <li>Use the Find Action feature: Bring up the “Find Action” search dialog (default keyboard shortcut is Ctrl+Shift+A) and type the name of the desired convert action (or type “Convert Case” to see all actions). Tip: This search uses fuzzy matching so you can just type “camcas” for “Convert Case: camelCase”.</li> + <li>Create a keyboard shortcut: Open Settings > Keymap and search for “Convert Case” and create a keyboard shortcut for the desired action.</li> + </ul> </html>]]></description> <change-notes><