-
Notifications
You must be signed in to change notification settings - Fork 1
/
LSP-julia.sublime-commands
44 lines (44 loc) · 1.14 KB
/
LSP-julia.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
[
{
"caption": "Preferences: LSP-julia Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-julia/LSP-julia.sublime-settings",
"default": "{\n\t$0\n}\n"
}
},
{
"caption": "LSP-julia: Change Current Environment",
"command": "julia_activate_environment"
},
{
"caption": "LSP-julia: Documentation",
"command": "julia_search_documentation"
},
{
"caption": "LSP-julia: Open Julia REPL in Panel",
"command": "julia_open_repl",
"args": {"panel": true}
},
{
"caption": "LSP-julia: Open Julia REPL in Tab",
"command": "julia_open_repl",
"args": {"panel": false}
},
{
"caption": "LSP-julia: Select Code Block",
"command": "julia_select_code_block"
},
{
"caption": "LSP-julia: Run Code Block",
"command": "julia_run_code_block"
},
{
"caption": "LSP-julia: Run Code Cell",
"command": "julia_run_code_cell"
},
{
"caption": "LSP-julia: Run Testitem",
"command": "julia_run_testitem"
},
]