-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Translate vscode-textmate from TypeScript to Java to support
tokenizeLine2. See #38
- Loading branch information
1 parent
81fcb8d
commit b5782ed
Showing
328 changed files
with
1,184,829 additions
and
388 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
1 change: 1 addition & 0 deletions
1
org.eclipse.tm4e.core.tests/src/test/resources/test-cases/themes/.gitignore
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 @@ | ||
/tests/*.diff.html |
339 changes: 339 additions & 0 deletions
339
org.eclipse.tm4e.core.tests/src/test/resources/test-cases/themes/Abyss.tmTheme
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,339 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>name</key> | ||
<string>Ofer 1</string> | ||
<key>settings</key> | ||
<array> | ||
<dict> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#000c18</string> | ||
<key>caret</key> | ||
<string>#ddbb88</string> | ||
<key>foreground</key> | ||
<string>#6688cc</string> | ||
<key>invisibles</key> | ||
<string>#002040</string> | ||
<key>lineHighlight</key> | ||
<string>#082050</string> | ||
<key>selection</key> | ||
<string>#770811</string> | ||
<key>guide</key> | ||
<string>#002952</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Comment</string> | ||
<key>scope</key> | ||
<string>comment</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#223355</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>String</string> | ||
<key>scope</key> | ||
<string>string</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#22aa44</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Number</string> | ||
<key>scope</key> | ||
<string>constant.numeric</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#f280d0</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Built-in constant</string> | ||
<key>scope</key> | ||
<string>constant.language</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#f280d0</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>User-defined constant</string> | ||
<key>scope</key> | ||
<string>constant.character, constant.other</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#f280d0</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Variable</string> | ||
<key>scope</key> | ||
<string>variable</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Keyword</string> | ||
<key>scope</key> | ||
<string>keyword</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#225588</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Storage</string> | ||
<key>scope</key> | ||
<string>storage</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#225588</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Storage type</string> | ||
<key>scope</key> | ||
<string>storage.type</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic</string> | ||
<key>foreground</key> | ||
<string>#9966b8</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Class name</string> | ||
<key>scope</key> | ||
<string>entity.name.class, entity.name.type</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>underline</string> | ||
<key>foreground</key> | ||
<string>#ffeebb</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Inherited class</string> | ||
<key>scope</key> | ||
<string>entity.other.inherited-class</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic underline</string> | ||
<key>foreground</key> | ||
<string>#ddbb88</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Function name</string> | ||
<key>scope</key> | ||
<string>entity.name.function</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#ddbb88</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Function argument</string> | ||
<key>scope</key> | ||
<string>variable.parameter</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic</string> | ||
<key>foreground</key> | ||
<string>#2277ff</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Tag name</string> | ||
<key>scope</key> | ||
<string>entity.name.tag</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#225588</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Tag attribute</string> | ||
<key>scope</key> | ||
<string>entity.other.attribute-name</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#ddbb88</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library function</string> | ||
<key>scope</key> | ||
<string>support.function</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#9966b8</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library constant</string> | ||
<key>scope</key> | ||
<string>support.constant</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#9966b8</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library class/type</string> | ||
<key>scope</key> | ||
<string>support.type, support.class</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic</string> | ||
<key>foreground</key> | ||
<string>#9966b8</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library variable</string> | ||
<key>scope</key> | ||
<string>support.other.variable</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Invalid</string> | ||
<key>scope</key> | ||
<string>invalid</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#F92672</string> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#F8F8F0</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Invalid deprecated</string> | ||
<key>scope</key> | ||
<string>invalid.deprecated</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#AE81FF</string> | ||
<key>foreground</key> | ||
<string>#F8F8F0</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Markup Quote</string> | ||
<key>scope</key> | ||
<string>markup.quote</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#22aa44</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Markup Styling</string> | ||
<key>scope</key> | ||
<string>markup.bold, markup.italic</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#22aa44</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Markup Inline</string> | ||
<key>scope</key> | ||
<string>markup.inline.raw</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#9966b8</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Markup Setext Header</string> | ||
<key>scope</key> | ||
<string>markup.heading.setext</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#ddbb88</string> | ||
</dict> | ||
</dict> | ||
</array> | ||
<key>uuid</key> | ||
<string>96A92F4B-E068-4DC6-9635-F55E7D920420</string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.