-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathText Marker.sublime-settings
79 lines (72 loc) · 1.72 KB
/
Text Marker.sublime-settings
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
Text Marker default settings
*/
{
"default": {
/* AUTO WORD HIGHLIGHT
Use this in your user prefs to avoid automatically highlighting words
as you move the cursor.
*/
"live": true,
/* COLOR OPTIONS
Normally the color of the highlights is the same as the color of
comments in your code, if this is set, it will rotate among the
colors in the list.
If you'd like to customize the highlight color in the menu, edit
Default.sublime-commands and add your preferred colors there.
*/
"default_colors": [
"darkgoldenrod",
"darkmagenta",
"darkturquoise",
"brown",
"darksalmon",
"darkseagreen",
"darkorange",
"darkkhaki",
"darkolivegreen",
"chocolate",
"slateblue",
"slategray",
"darkviolet",
"lightgreen",
"tomato",
"limegreen",
"lightcoral",
"mediumseagreen",
"darkred",
"cadetblue",
"darkgray",
"magenta",
"lime",
"skyblue",
"yellow",
"coral",
"deeppink",
"dodgerblue",
"gold",
"orangered"
],
"live_color": null,
/* DRAW OUTLINED
Use this in your user prefs to make the highlights be drawn as outlines
instead of as filled highlights.
*/
"draw_outlined": false,
/* MIN LENGTH OF WORDS TO HIGHLIGHT
Use this in your user prefs to set the minimum length of selected text to
highlight.
*/
"min_length": 4,
/* HIGHLIGHT WORDS WHEN SELECTION IS EMPTY
Use this in your user prefs to make words highlight when the insertion point
is inside of them but they're not actually selected.
*/
"when_selection_is_empty": true,
/* HIGHLIGHT WORDS WHEN SELECTION IS WHITESPACE
Use this in your user prefs to selected text highlight when the selection
is whitespace.
*/
"when_whitespace": true
}
}