Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tyron12233 authored Feb 28, 2022
2 parents 0097c05 + 900cd67 commit 17d0992
Show file tree
Hide file tree
Showing 72 changed files with 4,550 additions and 965 deletions.
2 changes: 1 addition & 1 deletion .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions app/src/main/assets/textmate/QuietLight.tmTheme
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,6 @@
</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#91B3E0</string>
</dict>
Expand Down
10 changes: 9 additions & 1 deletion app/src/main/assets/textmate/darcula.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"settings": [
{
"settings": {
"background": "#242424",
"background": "#1F1A1B",
"foreground": "#cccccc",
"lineHighlight": "#2B2B2B",
"selection": "#214283",
Expand Down Expand Up @@ -506,6 +506,14 @@
"settings": {
"foreground": "#FFC66D"
}
},

{
"name": "XML Namespace prefix",
"scope": "entity.name.tag.namesapce.xml",
"settings": {
"foreground": "#9876AA"
}
}
]
}
43 changes: 43 additions & 0 deletions app/src/main/assets/textmate/groovy/language-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"], {
"open": "\"",
"close": "\"",
"notIn": ["string"]
}, {
"open": "'",
"close": "'",
"notIn": ["string"]
}, {
"open": "/**",
"close": " */",
"notIn": ["string"]
}
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
],
"folding": {
"offSide": false,
"markers": {
"start": "^\\s*//\\s*#region",
"end": "^\\s*//\\s*#endregion"
}
}
}
Loading

0 comments on commit 17d0992

Please sign in to comment.