Skip to content

Commit 938429e

Browse files
committed
tweak some regex, add source color for dark
1 parent 087a06b commit 938429e

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,9 @@ All notable changes to the "vscode-nushell-lang" extension will be documented in
4343
- 0.0.9
4444
* renamed dark theme to Nushell-Dark
4545
* added light theme named Nushell-Light
46+
- 0.1.0
47+
* tweaked some dark colors
48+
* added source color for dark color
49+
* changed double quote regex
4650

4751

nushell.theme-minimal-dark.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
}
1111
},
1212

13+
// I used this for things like
14+
// alias <this_word> = blah
15+
{
16+
"scope": [ "source.nushell", ],
17+
"settings": {
18+
"foreground": "#61d6d6",
19+
// "fontStyle": "bold"
20+
}
21+
},
22+
1323
{
1424
"scope":"keyword.control.other.nushell",
1525
"settings": {
@@ -86,7 +96,7 @@
8696
"variable.name"
8797
],
8898
"settings": {
89-
"foreground": "#821791"
99+
"foreground": "#aa44dd"
90100
}
91101
},
92102

@@ -104,7 +114,7 @@
104114
"variable.language"
105115
],
106116
"settings": {
107-
"foreground": "#821791"
117+
"foreground": "#aa44dd"
108118
}
109119
},
110120

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-nushell-lang",
33
"displayName": "vscode-nushell-lang",
44
"description": "nushell language for vscode",
5-
"version": "0.0.9",
5+
"version": "0.1.0",
66
"license": "MIT",
77
"publisher": "nushell-team",
88
"repository": {

syntaxes/nushell.tmLanguage.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@
3434
"strings": {
3535
"name": "string.quoted.double.nushell",
3636
"begin": "\"|'|`",
37-
"end": "\"|'|`",
38-
"patterns": [
39-
{
40-
"name": "constant.character.escape.nushell",
41-
"match": "\\."
42-
}
43-
]
37+
"end": "\"|'|`"
4438
},
4539
"punctuation": {
4640
"match": "(;|\\||\\.|\\[|\\]|\\{|\\}|\\(|\\)|=|\\<|>)|(\\$\\(|\\$\\[|\\+|\\%|\\/|\\*)",

0 commit comments

Comments
 (0)