Skip to content

Commit 62b19f0

Browse files
authored
Merge pull request #640 from JunoLab/avi/packagemisc
package misc
2 parents 5b99b27 + 6001c37 commit 62b19f0

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

lib/package/menu.coffee

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ module.exports =
5252
{type: 'separator'}
5353

5454
{label: 'Open Workspace', command: 'julia-client:open-workspace'}
55+
{label: 'Open Outline Pane', command: 'julia-client:open-outline-pane'}
5556
{label: 'Open Documentation Browser', command: 'julia-client:open-documentation-browser'}
5657
{label: 'Open Plot Pane', command: 'julia-client:open-plot-pane'}
5758
{label: 'Open Debugger Pane', command: 'julia-client:open-debugger-pane'}
@@ -65,6 +66,11 @@ module.exports =
6566

6667
{type: 'separator'}
6768

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+
6874
{label: 'Debug Information', command: 'julia-client:debug-info'}
6975
{label: 'Help...', command: 'julia:get-help'}
7076
{label: 'Settings...', command: 'julia-client:settings'}

lib/runtime.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports =
3535
mod.ink = ink
3636
mod.activate()
3737
@subs.add new Disposable(=>
38-
mod.deactivate() for mod in [@console, @debugger, @profiler, @linter, @outline])
38+
mod.deactivate() for mod in [@console, @debugger, @profiler, @linter, @goto, @outline])
3939

4040
provideAutoComplete: ->
4141
require './runtime/completions'

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
"evaluation",
1111
"run",
1212
"inline",
13-
"REPL",
1413
"completion",
15-
"debugger",
16-
"documentation",
14+
"REPL",
15+
"terminal",
1716
"workspace",
18-
"plot",
19-
"outline"
17+
"outline",
18+
"documentation",
19+
"plot",
20+
"debugger"
2021
],
2122
"repository": "https://github.com/JunoLab/atom-julia-client",
2223
"license": "MIT",

script/boot_repl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ try
4141
outdated = """
4242
Please upgrade Atom.jl to at least version `$(MIN_ATOM_VER)` with e.g. `using Pkg; Pkg.update()`.
4343
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.
4545
"""
4646
end
4747
end

0 commit comments

Comments
 (0)