-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.2 Custom color schemes for Default and Darcula
- Loading branch information
Showing
4 changed files
with
79 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<idea-plugin version="2"> | ||
<id>mobi.hsz.idea.gitignore</id> | ||
<name>.gitignore support</name> | ||
<version>0.2.1</version> | ||
<version>0.2.2</version> | ||
<vendor email="[email protected]" url="http://www.hsz.mobi">hsz</vendor> | ||
|
||
<description><![CDATA[ | ||
|
@@ -16,6 +16,7 @@ | |
|
||
<change-notes><![CDATA[ | ||
<ul> | ||
<li><strong>0.2.2</strong> Custom color schemes for Default and Darcula</li> | ||
<li><strong>0.2.1</strong> Syntax highlight fix, Color Settings Page sample</li> | ||
<li><strong>0.2</strong> Syntax highlight</li> | ||
<li><strong>0.1</strong> Initial version</li> | ||
|
@@ -27,11 +28,12 @@ | |
<depends>com.intellij.modules.lang</depends> | ||
|
||
<extensions defaultExtensionNs="com.intellij"> | ||
<internalFileTemplate name="Gitignore File" /> | ||
<colorSettingsPage implementation="mobi.hsz.idea.gitignore.highlighter.GitignoreColorSettingsPage" /> | ||
<fileTypeFactory implementation="mobi.hsz.idea.gitignore.GitignoreFileTypeFactory" /> | ||
<lang.parserDefinition language="Gitignore" implementationClass="mobi.hsz.idea.gitignore.GitignoreParserDefinition" /> | ||
<lang.syntaxHighlighterFactory key="Gitignore" implementationClass="mobi.hsz.idea.gitignore.highlighter.GitignoreHighlighterFactory" /> | ||
<additionalTextAttributes scheme="Default" file="colorSchemes/GitignoreDefault.xml" /> | ||
<additionalTextAttributes scheme="Darcula" file="colorSchemes/GitignoreDarcula.xml" /> | ||
</extensions> | ||
|
||
<application-components> | ||
|
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version='1.0'?> | ||
<list> | ||
<option name="GITIGNORE.COMMENT"> | ||
<value> | ||
<option name="FOREGROUND" value="808080" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.SECTION"> | ||
<value> | ||
<option name="FOREGROUND" value="8C8C8C" /> | ||
<option name="BACKGROUND" value="3A3A3A" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.HEADER"> | ||
<value> | ||
<option name="FOREGROUND" value="8C8C8C" /> | ||
<option name="BACKGROUND" value="3A3A3A" /> | ||
<option name="FONT_TYPE" value="1" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.NEGATION"> | ||
<value> | ||
<option name="FOREGROUND" value="A9B7C6" /> | ||
<option name="BACKGROUND" value="532B2E" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.ENTRY_FILE"> | ||
<value> | ||
<option name="FOREGROUND" value="629755" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.ENTRY_DIRECTORY"> | ||
<value> | ||
<option name="FOREGROUND" value="6897BB" /> | ||
</value> | ||
</option> | ||
</list> |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version='1.0'?> | ||
<list> | ||
<option name="GITIGNORE.COMMENT"> | ||
<value> | ||
<option name="FOREGROUND" value="808080" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.SECTION"> | ||
<value> | ||
<option name="FOREGROUND" value="808080" /> | ||
<option name="BACKGROUND" value="ECFAEB" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.HEADER"> | ||
<value> | ||
<option name="FOREGROUND" value="808080" /> | ||
<option name="BACKGROUND" value="ECFAEB" /> | ||
<option name="FONT_TYPE" value="1" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.NEGATION"> | ||
<value> | ||
<option name="FOREGROUND" value="FFFFFF" /> | ||
<option name="BACKGROUND" value="FF0000" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.ENTRY_FILE"> | ||
<value> | ||
<option name="FOREGROUND" value="5C9F30" /> | ||
</value> | ||
</option> | ||
<option name="GITIGNORE.ENTRY_DIRECTORY"> | ||
<value> | ||
<option name="FOREGROUND" value="1A16BA" /> | ||
</value> | ||
</option> | ||
</list> |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## First section | ||
*.jar | ||
*.war # Inline comment | ||
*.war | ||
*.ear | ||
out/ | ||
|
||
|