Skip to content

Commit 2e923b1

Browse files
committed
quick update workflow.md
1 parent 514aa85 commit 2e923b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

manual/workflow.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ looks and then explain a few of the details that make it possible:
6060
![](static/main_modulename.png)
6161

6262
- 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
6464
(`cmd-shift-enter` or `ctrl-shift-enter`)
6565
- Now open a different file and set the syntax to Julia (`ctrl+shift+l` on all
6666
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`)
6868
and select the name of the module defined in `foo.jl`. After doing this you
6969
should see `Tmp` on the status bar where `Main/Tmp` was:
7070

@@ -96,7 +96,7 @@ help?> Base.eval
9696
Notice that if one argument is given, `Expr` is evaluated in the current working
9797
module. However, if two arguments are given the first argument gives the name of
9898
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
100100
the code from the current file directly into the chosen module. In our example
101101
above, this means that all the code we evaluate from `scratch.jl` is evaluated
102102
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.
137137
directory in calls to functions like `include`, sometimes it is still useful
138138
to have the Julia instance work from the directory of your main file (e.g.
139139
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
141141
directory for the Julia process to be the directory where your file is
142142
contained
143143
- I bind this function to a keybinding in my `~/.atom/keymaps.cson` to make
144144
this more convenient:
145145
```coffeescript
146146
'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'
148148
```
149149
- There are also commands `Julia Client: Work in Project Folder` and
150150
`Julia Client: Work in Home Folder` that can set the directory for the

0 commit comments

Comments
 (0)