-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsublime-package.json
99 lines (99 loc) · 4.03 KB
/
sublime-package.json
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
90
91
92
93
94
95
96
97
98
99
{
"contributions": {
"settings": [
{
"file_patterns": [
"/Preferences.sublime-settings"
],
"schema": {
"properties": {
"thin_scroll_bars": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether to render thin scroll bar puck when scrolling via mouse.\n\nprovided by: Theme - DAneo"
},
"show_disclosure_buttons": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show the disclosure buttons in the sidebar\n\nprovided by: Theme - DAneo."
},
"align_disclosure_buttons": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether to align the disclosure buttons with the file icons.\nThis setting has only effect if `show_disclosure_buttons` is `true`\n\nprovided by: Theme - DAneo."
},
"show_sidebar_icons": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show folder and file icons in the sidebar\n\nprovided by: Theme - DAneo."
},
"show_sidebar_vcs_badges": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status badges in the side bar\n\nprovided by: Theme - DAneo."
},
"show_sidebar_closed_dir_badges": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status badges for collapsed directories in the side bar if `show_sidebar_vcs_badges` is `true`\n\nprovided by: Theme - DAneo."
},
"show_sidebar_opened_dir_badges": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether to show vcs status badges for expanded directories in the side bar if `show_sidebar_vcs_badges` is `true`\n\nprovided by: Theme - DAneo."
},
"show_sidebar_ignored_label_colors": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status of ignored files and folders by the color of their labels in the sidebar\n\nprovided by: Theme - DAneo."
},
"show_sidebar_tracked_label_colors": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status of tracked files and folders by the color of their labels in the sidebar\n\nprovided by: Theme - DAneo."
},
"show_sidebar_untracked_label_colors": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status of untracked files and folders by the color of their labels in the sidebar\n\nprovided by: Theme - DAneo."
},
"file_tab_size": {
"type": "string",
"enum": [
"normal",
"small"
],
"default": "normal",
"markdownDescription": "Controls size of file tabs. Valid values are `\"normal\"` and `\"small\"`\n\nprovided by: Theme - DAneo."
},
"show_scroll_tabs_buttons": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show the tab scroll buttons.\n\nprovided by: Theme - DAneo"
},
"show_new_tab_button": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show the create new tabs button.\n\nprovided by: Theme - DAneo"
},
"show_tabs_dropdown_button": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show the tabs dropdown button.\n\nprovided by: Theme - DAneo"
},
"panel_input_highlighting": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to highlight background of highlighted panel input controls.\n\nprovided by: Theme - DAneo"
},
"show_panel_close_button": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether to show the close button of the find and replace panels.\n\nprovided by: Theme - DAneo"
}
}
}
}
]
}
}