File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change
1
+ const keywordPrefix = '<div class="keyword">' ;
2
+ const keywordSuffix = '</div>' ;
3
+
4
+ const valuePrefix = '<div class="value">' ;
5
+ const valueSuffix = '</div>' ;
6
+
1
7
const colorMap = {
2
8
'abstract' : { prefix : keywordPrefix , suffix : keywordSuffix } ,
3
9
'assert' : { prefix : keywordPrefix , suffix : keywordSuffix } ,
Original file line number Diff line number Diff line change 1
1
const characterPrefix = '<div class="character">' ;
2
2
const characterSuffix = '</div>' ;
3
3
4
- const keywordPrefix = '<div class="keyword">' ;
5
- const keywordSuffix = '</div>' ;
6
-
7
- const valuePrefix = '<div class="value">' ;
8
- const valueSuffix = '</div>' ;
9
-
10
- var lineRef = [ ] ;
11
4
const defaultCaret = new Caret ( 0 , 1 , 1 ) ;
12
5
const shiftKey = new Key ( 16 , '' ) ;
13
6
const ctrlKey = new Key ( 17 , '' ) ;
14
7
const altKey = new Key ( 18 , '' ) ;
15
8
const capsLockKey = new Key ( 20 , '' ) ;
16
- var ignoreKeyList = [ 16 , 17 , 18 ] ;
17
- var tabSize = 4 ;
9
+ const ignoreKeyList = [ 16 , 17 , 18 ] ;
10
+
11
+ var tabSize = 4 ;
12
+ var lineRef = [ ] ;
You can’t perform that action at this time.
0 commit comments