-
Notifications
You must be signed in to change notification settings - Fork 25
/
Main.sublime-menu
78 lines (78 loc) · 3.38 KB
/
Main.sublime-menu
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
[
{
"id": "preferences",
"children": [
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children": [
{
"caption": "LSP",
"id": "lsp-settings",
"children": [
{
"caption": "Servers",
"id": "lsp-servers",
"children": [
{
"caption": "LSP-copilot",
"children": [
{
"caption": "Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/LSP-copilot.sublime-settings",
"default": "// Settings in here override those in \"LSP-copilot/LSP-copilot.sublime-settings\"\n\n{\n\t$0\n}\n",
},
},
{
"caption": "Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/Default.sublime-keymap",
"user_file": "${packages}/User/Default (${platform}).sublime-keymap",
"default": "[\n\t$0\n]\n",
},
},
{
"caption": "-",
},
{
"caption": "Copilot: Edit CSS: Popup Completion",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/completion@popup.css",
"user_file": "${packages}/LSP-copilot/plugin/assets/completion@popup.custom.css",
"default": "/* User extra CSS rules: Popup Completion */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
{
"caption": "Copilot: Edit CSS: Panel Completion",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/panel_completion.css",
"user_file": "${packages}/LSP-copilot/plugin/assets/panel_completion.custom.css",
"default": "/* User extra CSS rules: Panel Completion */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
{
"caption": "Copilot: Edit CSS: Chat Panel",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/chat_panel.css",
"user_file": "${packages}/LSP-copilot/plugin/assets/chat_panel.custom.css",
"default": "/* User extra CSS rules: Chat Panel */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
],
},
],
},
],
},
],
},
],
},
]