@@ -60,11 +60,11 @@ looks and then explain a few of the details that make it possible:
60
60
![ ] ( static/main_modulename.png )
61
61
62
62
- If ` foo.jl ` is not on the Julia ` LOAD_PATH ` you should evaluate the
63
- whole file by executing the ` Julia client: evaluate all ` command
63
+ whole file by executing the ` Julia Client: Run All ` command
64
64
(` cmd-shift-enter ` or ` ctrl-shift-enter ` )
65
65
- Now open a different file and set the syntax to Julia (` ctrl+shift+l ` on all
66
66
platforms and select ` Julia ` ). With this file active, run the
67
- ` Julia Client: Set working module ` command (` cmd-j cmd-m ` or ` ctrl-j ctrl-m ` )
67
+ ` Julia Client: Set Working Module ` command (` cmd-j cmd-m ` or ` ctrl-j ctrl-m ` )
68
68
and select the name of the module defined in ` foo.jl ` . After doing this you
69
69
should see ` Tmp ` on the status bar where ` Main/Tmp ` was:
70
70
@@ -96,7 +96,7 @@ help?> Base.eval
96
96
Notice that if one argument is given, ` Expr ` is evaluated in the current working
97
97
module. However, if two arguments are given the first argument gives the name of
98
98
the module in which the ` Expr ` should be evaluated. So, when you run `Julia
99
- Client: Set working module ` what you are doing is telling Atom to evaluate all
99
+ Client: Set Working Module ` what you are doing is telling Atom to evaluate all
100
100
the code from the current file directly into the chosen module. In our example
101
101
above, this means that all the code we evaluate from ` scratch.jl ` is evaluated
102
102
within the ` Tmp ` module _ as if_ we had put the code in the module to begin with.
@@ -137,14 +137,14 @@ you are working on.
137
137
directory in calls to functions like ` include ` , sometimes it is still useful
138
138
to have the Julia instance work from the directory of your main file (e.g.
139
139
when you are writing output files to disk)
140
- - The commands ` Julia Client: Work in File Folder ` will set the working
140
+ - The commands ` Julia Client: Work In Current Folder ` will set the working
141
141
directory for the Julia process to be the directory where your file is
142
142
contained
143
143
- I bind this function to a keybinding in my ` ~/.atom/keymaps.cson ` to make
144
144
this more convenient:
145
145
``` coffeescript
146
146
' atom-text-editor[data-grammar="source julia"]' :
147
- ' cmd-j cmd-f' : ' julia-client:work-in-file -folder'
147
+ ' cmd-j cmd-f' : ' julia-client:work-in-current -folder'
148
148
```
149
149
- There are also commands ` Julia Client: Work in Project Folder ` and
150
150
` Julia Client: Work in Home Folder ` that can set the directory for the
0 commit comments