-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPreferences.sublime-settings
89 lines (76 loc) · 2.23 KB
/
Preferences.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
80
81
82
83
84
85
86
87
88
89
{
"meta.color_scheme": {
"widget": "select_resource",
"args": { "find_resources": "*.tmTheme" }
},
"meta.font_options": {
"widget": "multiselect",
"args": { "values": [
{ "caption": "No Bold", "value": "no_bold" },
{ "caption": "No Italic", "value": "no_italic" },
{ "caption": "No Antialias", "value": "no_antialias" },
{ "caption": "Gray Antialias", "value": "gray_antialias" },
{ "caption": "Subpixel Antialias", "value": "subpixel_antialias" },
{ "caption": "No Round (OS X only)", "value": "no_round" },
{ "caption": "GDI (Windows only)", "value": "gdi" },
{ "caption": "Direct Write (Windwos only)", "value": "directwrite" }
]
}
},
"meta.word_wrap": {
"widget": "select",
"args": {"values": [ true, false, "auto" ]}
},
// meta.dictionary may be set to one of *.dic found
"meta.dictionary": {
"widget": "select_resource",
"args": { "find_resources": "*.dic" },
"validate": "str"
},
"meta.caret_style": {
"widget": "select",
"args": { "values": ["smooth", "phase", "blink", "solid"] },
"validate": "str"
},
"meta.draw_white_space": {
"widget": "select",
"args": { "values": ["none", "selection", "all"] },
"validate": "str"
},
"meta.indent_guide_options": {
"widget": "multiselect",
"args": { "values": [ "draw_normal", "draw_active"] }
},
"meta.default_line_endings": {
"widget": "select",
"args": { "values": [
{"caption": "System", "value": "system"},
{"caption": "Windows (CRLF)", "value": "windows"},
{"caption": "UNIX (LF)", "value": "unix"}
]},
"validate": "str"
},
"meta.theme": {
"widget": "select_resource",
"args": { "find_resources": "*.sublime-theme" }
},
"meta.gpu_window_buffer": {
"widget": "select",
"args": {"values": [ true, false, "auto" ]},
"validate": [ true, false, "auto" ]
},
"meta.overlay_scroll_bars": {
"widget": "select",
"args": { "values": ["system", "enabled", "disabled"] },
"validate": "str"
},
"meta.ignored_packages": {
"widget": "select",
"args": { "values": [
{"caption": "Enable Package", "command": "enable_package"},
{"caption": "Disable Package", "command": "disable_package"}
]}
},
// Whether to show or not the helper view with the settings documentation
"always_show_helper_view": false,
}