-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.diff
More file actions
25 lines (24 loc) · 1.15 KB
/
diff.diff
File metadata and controls
25 lines (24 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
diff --git a/hackerman-qt5/built_in_lexers.py b/hackerman-qt5/built_in_lexers.py
index e849e3f0..8e6da8b9 100644
--- a/hackerman-qt5/built_in_lexers.py
+++ b/hackerman-qt5/built_in_lexers.py
@@ -136,8 +136,8 @@ class CustomLexerAsm(QsciLexerMASM):
6 : "keyword", # CPU instruction
7 : "keyword", # FPU instruction
8 : "type", # Register
- 9 : "builtin", # Directive
- 10 : "builtin", # Directive operand
+ 9 : "builtin", # Directive
+ 10 : "builtin", # Directive operand
11 : "comment", # Block comment
12 : "string", # Single-quoted string
13 : "error", # Unclosed string
@@ -197,7 +197,7 @@ class CustomLexerOdin(QsciLexerOdin):
6 : "operator", # Operator
7 : "name", # Identifier
8 : "type", # Type
- 9 : "builtin", # Builtin
+ 9 : "builtin", # Builtin
10 : "number", # Constant
11 : "comment", # Block Comment
}