File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ module.exports =
52
52
{type : ' separator' }
53
53
54
54
{label : ' Open Workspace' , command : ' julia-client:open-workspace' }
55
+ {label : ' Open Outline Pane' , command : ' julia-client:open-outline-pane' }
55
56
{label : ' Open Documentation Browser' , command : ' julia-client:open-documentation-browser' }
56
57
{label : ' Open Plot Pane' , command : ' julia-client:open-plot-pane' }
57
58
{label : ' Open Debugger Pane' , command : ' julia-client:open-debugger-pane' }
@@ -65,6 +66,11 @@ module.exports =
65
66
66
67
{type : ' separator' }
67
68
69
+ {label : ' New Terminal' , command : ' julia-client:new-terminal' }
70
+ {label : ' New Remote Terminal' , command : ' julia-client:new-remote-terminal' }
71
+
72
+ {type : ' separator' }
73
+
68
74
{label : ' Debug Information' , command : ' julia-client:debug-info' }
69
75
{label : ' Help...' , command : ' julia:get-help' }
70
76
{label : ' Settings...' , command : ' julia-client:settings' }
Original file line number Diff line number Diff line change 10
10
" evaluation" ,
11
11
" run" ,
12
12
" inline" ,
13
- " REPL" ,
14
13
" completion" ,
15
- " debugger " ,
16
- " documentation " ,
14
+ " REPL " ,
15
+ " terminal " ,
17
16
" workspace" ,
18
- " plot" ,
19
- " outline"
17
+ " outline" ,
18
+ " documentation" ,
19
+ " plot" ,
20
+ " debugger"
20
21
],
21
22
"repository" : " https://github.com/JunoLab/atom-julia-client" ,
22
23
"license" : " MIT" ,
Original file line number Diff line number Diff line change 41
41
outdated = """
42
42
Please upgrade Atom.jl to at least version `$(MIN_ATOM_VER) ` with e.g. `using Pkg; Pkg.update()`.
43
43
44
- If the integrated REPL is non-functional, try an external terminal opened with the `Julia Client: Open External Repl ` command.
44
+ If the integrated REPL is non-functional, try an external terminal opened with the `Julia Client: Open External REPL ` command.
45
45
"""
46
46
end
47
47
end
You can’t perform that action at this time.
0 commit comments