-
Notifications
You must be signed in to change notification settings - Fork 0
/
sublime-package.json
102 lines (102 loc) · 5.46 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
100
101
102
{
"contributions": {
"settings": [
{
"file_patterns": ["/Preferences.sublime-settings"],
"schema": {
"properties": {
"kind_icons_style": {
"type": "string",
"default": "octicons",
"enum": ["octicons", "gitlab", "codicons", "letters"],
"markdownEnumDescriptions": [
"[Octicons](https://github.com/primer/octicons) from GitHub",
"[GitLab SVGs](https://gitlab.com/gitlab-org/gitlab-svgs)",
"[Codicons](https://github.com/microsoft/vscode-codicons) from VS Code",
"A single colored letter, similar to the built-in Default and Adaptive themes"
],
"markdownDescription": "Controls the style for the kind icons which are shown in the autocompletion popup and the \"Goto Symbol\" panels.\n\nSetting from: *Theme - Brackets*"
},
"kind_letters": {
"type": "boolean",
"deprecationMessage": "This setting is deprecated!\nUse \"kind_icons_style\": \"letters\" instead.",
"markdownDescription": "Setting from: *Theme - Brackets*"
},
"sidebar_status_colors": {
"type": "boolean",
"default": false,
"markdownDescription": "Highlight filenames in the sidebar for files with Git status \"new\" or \"modified\" in green and orange. Regardless of this setting, files with status \"ignored\" are always dimmed.\n\nSetting from: *Theme - Brackets*"
},
"git_status_icons": {
"type": "string",
"default": "octicons",
"enum": ["octicons", "codicons", "letters", "disabled"],
"markdownDescription": "Controls the style for the git status icons for files and folders in the sidebar.\n\nSetting from: *Theme - Brackets*"
},
"hide_sidebar_status_icons": {
"type": "boolean",
"deprecationMessage": "This setting is deprecated!\nUse \"git_status_icons\": \"disabled\" instead.",
"markdownDescription": "Setting from: *Theme - Brackets*"
},
"tab_shadows": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether to draw shadows and a thin border for file tabs.\n\nSetting from: *Theme - Brackets*"
},
"inactive_tab_transparency": {
"type": "boolean",
"default": false,
"markdownDescription": "Makes inactive tabs transparent, similar to how they are displayed in the Default and Adaptive themes.\n\nSetting from: *Theme - Brackets*"
},
"blend_inactive_tabs": {
"type": "boolean",
"deprecationMessage": "This setting is deprecated!\nUse \"inactive_tab_transparency\" instead.",
"markdownDescription": "Setting from: *Theme - Brackets*"
},
"tooltip_style": {
"type": "string",
"default": "dark",
"enum": ["dark", "light"],
"markdownDescription": "Controls the style for tooltips.\n\nUpvote https://github.com/sublimehq/sublime_text/issues/4683 on GitHub if you would prefer that the style should be automatically derived from the color scheme.\n\nSetting from: *Theme - Brackets*"
},
"popup_style": {
"type": "string",
"default": "rounded",
"enum": ["plain", "rounded", "square"],
"markdownDescription": "Controls the style for hover popups.\n\nOptions: `\"plain\"`, `\"rounded\"` or `\"square\"`. When set to `\"rounded\"` or `\"square\"`, popups will be drawn with a border.\n\nSetting from: *Theme - Brackets*"
},
"fold_buttons_style": {
"type": "string",
"default": "triangle",
"enum": ["triangle", "square"],
"markdownDescription": "Controls the style for the buttons shown in the gutter to fold regions of text.\n\nSetting from: *Theme - Brackets*"
},
"hide_tabs_dropdown_button": {
"type": "boolean",
"default": false,
"markdownDescription": "Hides the tabs dropdown button.\n\nSetting from: *Theme - Brackets*"
},
"scroll_bar_style": {
"type": "string",
"default": "auto",
"enum": ["brackets", "sublime", "thin", "auto"],
"markdownEnumDescriptions": [
"The original scroll bars from Adobe Brackets",
"The default scroll bars from Sublime Text",
"Thin scroll bars that expand on hover",
"Uses `\"sublime\"` when overlay scroll bars are enabled, and `\"brackets\"` when disabled"
],
"markdownDescription": "Controls the style for scroll bars. Options are:\n\n- `\"brackets\"`\n- `\"sublime\"`\n- `\"thin\"`\n- `\"auto\"`\n\nThe `\"auto\"` option uses `\"sublime\"` when overlay scroll bars are enabled, and `\"brackets\"` when disabled.\n\nSetting from: *Theme - Brackets*"
},
"theme_variant": {
"type": "string",
"default": "winui",
"enum": ["winui"],
"markdownDescription": "Provides an alternative style for the title bar, the side bar, and a few other UI elements (experimental).\n\nSetting from: *Theme - Brackets*"
}
}
}
}
]
}
}