File tree Expand file tree Collapse file tree 3 files changed +21
-16
lines changed Expand file tree Collapse file tree 3 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -157,26 +157,32 @@ config =
157
157
usePlotPane :
158
158
title : ' Enable Plot Pane'
159
159
type : ' boolean'
160
- description : ' Show plots in Atom.'
161
160
default : true
161
+ description : ' Show plots in Atom.'
162
162
order : 8
163
+ maxNumberPlots :
164
+ title : ' Maximum Number of Plots in History'
165
+ type : ' number'
166
+ default : 50
167
+ description : ' Increasing this number may lead to high memory consumption and poor performance.'
168
+ order : 9
163
169
openNewEditorWhenDebugging :
164
170
title : ' Open New Editor When Debugging'
165
171
type : ' boolean'
166
172
default : false
167
173
description : ' Opens a new editor tab when stepping into a new file instead
168
174
of reusing the current one (requires restart).'
169
- order : 9
175
+ order : 10
170
176
cellDelimiter :
171
177
title : ' Cell Delimiter'
172
178
type : ' array'
173
179
default : [' ##' , ' #---' , ' #%%' , ' # %%' ]
174
180
description : ' Regular expressions for determining cell delimiters.'
175
- order : 10
181
+ order : 11
176
182
layouts :
177
183
title : ' Layout Options'
178
184
type : ' object'
179
- order : 11
185
+ order : 12
180
186
collapsed : true
181
187
properties :
182
188
console :
@@ -410,12 +416,6 @@ config =
410
416
type : ' boolean'
411
417
default : true
412
418
order : 11
413
- maxNumberPlots :
414
- title : ' Maximum Number of Plots in History'
415
- type : ' number'
416
- description : ' Increasing this number may lead to high memory consumption and poor performance.'
417
- default : 50
418
- order : 12
419
419
consoleOptions :
420
420
type : ' object'
421
421
title : ' Terminal Options'
Original file line number Diff line number Diff line change @@ -127,8 +127,7 @@ module.exports =
127
127
if dirEl
128
128
pathEl = dirEl .querySelector (' [data-path]' )
129
129
if pathEl
130
- path = pathEl .dataset .path
131
- return path
130
+ return pathEl .dataset .path
132
131
# invoked from normal command usage
133
132
file = client .editorPath (atom .workspace .getCenter ().getActiveTextEditor ())
134
133
if file
Original file line number Diff line number Diff line change 1
1
' context-menu' :
2
2
' atom-text-editor[data-grammar="source julia"]' : [
3
3
{type : ' separator' }
4
-
5
4
{
6
5
label : ' Juno' ,
7
6
submenu : [
16
15
{label : ' Toggle Conditional Breakpoint' , command : ' julia-debug:toggle-conditional-breakpoint' }
17
16
]
18
17
}
19
-
20
18
{type : ' separator' }
21
19
]
20
+
22
21
' .tree-view li.directory' : [
23
- { label : ' Juno: Work in Folder' , command : ' julia-client:work-in-current-folder' }
24
- { label : ' Juno: Activate Project' , command : ' julia-client:activate-current-folder' }
22
+ {type : ' separator' }
23
+ {
24
+ label : ' Juno' ,
25
+ submenu : [
26
+ { label : ' Work in Folder' , command : ' julia-client:work-in-current-folder' }
27
+ { label : ' Activate Project' , command : ' julia-client:activate-current-folder' }
28
+ ]
29
+ }
30
+ {type : ' separator' }
25
31
]
You can’t perform that action at this time.
0 commit comments