-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enabled formatting of selected text.
- Loading branch information
Kenichi Hoshi
committed
Apr 12, 2017
1 parent
14c212a
commit 6921f48
Showing
5 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<idea-plugin> | ||
<id>jp.co.future.ideausqlfmt</id> | ||
<name>IntelliJ uroboroSQL Formatter</name> | ||
<version>0.1.1</version> | ||
<version>0.2.0</version> | ||
<vendor email="[email protected]" url="https://github.com/future-architect/idea-uroborosql-formatter">Future | ||
Architect, Inc. | ||
</vendor> | ||
|
@@ -25,7 +25,7 @@ | |
<h2>How to use</h2> | ||
<p>Use Alt + Shift + L on Windows, Cmd + Shift + L on OS X to format currently active document.</p> | ||
<p>Use Alt + Shift + L on Windows, Cmd + Ctrl + L on OS X to format currently active document.</p> | ||
<p>The following options can be selected by the Preferences dialog.</p> | ||
<ul> | ||
<li>Convert reserved words and identifiers to upper case</li> | ||
|
@@ -35,13 +35,18 @@ | |
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
<h2>0.2 (2017/04/12)</h2> | ||
<ul> | ||
<li>Enabled formatting of selected text.</li> | ||
<li>Change default keyboard shortcut.</li> | ||
</ul> | ||
<h2>0.1.1 (2017/04/08)</h2> | ||
<ul> | ||
<li>change default keyboard shortcut</li> | ||
<li>Change default keyboard shortcut.</li> | ||
</ul> | ||
<h2>0.1.0 (2017/04/06)</h2> | ||
<ul> | ||
<li>First release</li> | ||
<li>First release.</li> | ||
</ul> | ||
]]> | ||
</change-notes> | ||
|
@@ -61,8 +66,8 @@ | |
<add-to-group group-id="CodeFormatGroup" anchor="first"/> | ||
|
||
<keyboard-shortcut keymap="$default" first-keystroke="alt shift L"/> | ||
<keyboard-shortcut keymap="Mac OS X" first-keystroke="meta shift L"/> | ||
<keyboard-shortcut keymap="Mac OS X 10.5+" first-keystroke="meta shift L"/> | ||
<keyboard-shortcut keymap="Mac OS X" first-keystroke="meta ctrl L"/> | ||
<keyboard-shortcut keymap="Mac OS X 10.5+" first-keystroke="meta ctrl L"/> | ||
</action> | ||
</actions> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters