We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6906d4 commit 23a8c19Copy full SHA for 23a8c19
grammars/transact-sql.cson
@@ -21,4 +21,8 @@ patterns: [
21
match: '\\b[0-9]+(\\.[0-9]+)?\\b'
22
name: 'numeric'
23
}
24
+ {
25
+ match: '\\b(null|not null)\\b'
26
+ name: 'null'
27
+ }
28
]
styles/language-transact-sql.less
@@ -1,6 +1,7 @@
1
@color-gray: #5C6370;
2
@color-green: #98C379;
3
@color-orange: #D19A66;
4
+@color-pink: #DD78AE;
5
@color-red: #E06C75;
6
7
atom-text-editor {
@@ -17,4 +18,7 @@ atom-text-editor {
17
18
.syntax--numeric {
19
color: @color-orange;
20
+ .syntax--null {
+ color: @color-pink;
0 commit comments