-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathKiteSublime.sublime-commands
58 lines (58 loc) · 1.24 KB
/
KiteSublime.sublime-commands
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
[
{
"caption": "Kite: Hover Over Symbol",
"command": "kite_show_hover"
},
{
"caption": "Kite: Docs At Cursor",
"command": "kite_docs_at_cursor"
},
{
"caption": "Kite: Show Function Signatures",
"command": "kite_show_signatures"
},
{
"caption": "Kite: Open Copilot",
"command": "kite_open_copilot"
},
{
"caption": "Kite: Start Engine",
"command": "kite_start_engine"
},
{
"caption": "Kite: Engine Settings",
"command": "kite_engine_settings"
},
{
"caption": "Kite: Package Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/KiteSublime/KiteSublime.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "Kite: Find Related Code From File",
"command": "kite_find_related_code_from_file"
},
{
"caption": "Kite: Find Related Code From Line",
"command": "kite_find_related_code_from_line"
},
{
"caption": "Kite: Python Tutorial",
"command": "kite_python_tutorial"
},
{
"caption": "Kite: Javascript Tutorial",
"command": "kite_javascript_tutorial"
},
{
"caption": "Kite: Go Tutorial",
"command": "kite_go_tutorial"
},
{
"caption": "Kite: Help",
"command": "kite_help"
}
]