diff options
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/META-INF/plugin.xml | 14 |
1 files changed, 12 insertions, 2 deletions
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><![CDATA[<html> <dl> + <dt>Version 0.6.1</dt> + <dd>Add a short documentation on how to use the plugin</dd> + <dt>Version 0.6.0</dt> <dd>Organize Convert case actions into new Edit submenu "Convert case" instead of cluttering up the edit menu</dd> @@ -82,4 +92,4 @@ </group> </actions> -</idea-plugin>
\ No newline at end of file +</idea-plugin> |