-
Notifications
You must be signed in to change notification settings - Fork 3
/
sublime-package.json
90 lines (88 loc) · 5.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
{
"contributions": {
"settings": [
{
"file_patterns": ["/CommandsBrowser.sublime-settings"],
"schema": {
"properties": {
"auto_open_doc_panel_on_navigate": {
"type": "boolean",
"default": false,
"markdownDescription": "Whether to automatically open the core commands documentation panel as you navigate through the core command list in the quick panel."
},
"filter_plugin_commands_on_host": {
"type": "string",
"default": "all",
"enum": ["all", "3.3", "3.8"],
"markdownDescription": "This setting allows a user to filter plugin/package commands based on the plugin host from where the command originates.",
"markdownEnumDescriptions": [
"Include commands from both plugin hosts (Which means all plugin/package commands)",
"Include commands from 3.3 plugin host only.",
"Include commands from 3.8 plugin host only.",
]
},
"filter_plugin_commands_on_package": {
"oneOf": [
{
"type": "string",
"default": "all"
},
{
"type": "array",
}
],
"default": "all",
"markdownDescription": "This setting allows a user to filter plugin/package commands based on the package name.",
},
"copy_command_signature_modifier_key": {
"type": "string",
"default": "ctrl",
"enum": ["ctrl", "primary", "alt", "altgr", "shift", "super"],
"markdownDescription": "This setting allows a user to configure the modifier key that can be held while selecting a core command, to copy the command signature to clipboard.",
"markdownEnumDescriptions": [
"Choose <kbd>ctrl</kbd> as the modifier key.",
"Choose <kbd>primary</kbd> as the modifier key (Which is <kbd>ctrl</kbd> on Windows/Linux and <kbd>cmd</kbd> on MacOS).",
"Choose <kbd>alt</kbd> as the modifier key.",
"Choose <kbd>altgr</kbd> as the modifier key (Linux only).",
"Choose <kbd>shift</kbd> as the modifier key.",
"Choose <kbd>super</kbd> as the modifier key (Which is <kbd>Win</kbd> on Windows/Linux and <kbd>cmd</kbd> on MacOS).",
]
},
"filter_plugin_commands_on_type": {
"type": "array",
"minItems": 0,
"maxItems": 3,
"items": {
"enum": ["text", "window", "application"],
"markdownEnumDescriptions": [
"Includes text commands in the list",
"Includes window commands in the list",
"Includes application commands in the list",
]
},
"uniqueItems": true,
"markdownDescription": "This setting allows a user to filter plugin/package commands based on the command type.",
},
"filter_core_commands_on_type": {
"type": "array",
"minItems": 0,
"maxItems": 4,
"items": {
"enum": ["text", "window", "application", "find"],
"markdownEnumDescriptions": [
"Includes text commands in the list",
"Includes window commands in the list",
"Includes application commands in the list",
"Includes find commands in the list",
]
},
"uniqueItems": true,
"markdownDescription": "This setting allows a user to filter core commands based on the command type.",
}
},
"additionalProperties": false,
}
}
]
}
}