Skip to content

Commit 339731f

Browse files
authored
update run and debug option
1 parent 1a0ee94 commit 339731f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lectures/software_engineering/tools_editors.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,16 @@ Alternatively, within VS Code itself you can use the `<Ctrl-F5>` to run the new
202202

203203
To debug your function, first click to the left of a line of code to create a breakpoint (seen as a red dot).
204204

205-
Next, use `<Ctrl-Shift-D>` or select the bug tab on the left in Julia to see
205+
Next, use `<Ctrl-Shift-D>` or select the run and debug tab on the left in Julia to see
206206
```{figure} /_static/figures/debugger_1.png
207207
:width: 100%
208208
```
209209

210-
Then choose the `Run active Julia file` option and it will execute `plot_results()` at the bottom of the file, and then stop inside at the breakpoint.
210+
Then choose the `Run and Debug` option and it will execute `plot_results()` at the bottom of the file, and then stop inside at the breakpoint.
211+
212+
```{note}
213+
Some users may see other options like `Run active Julia file` instead of `Run and Debug` in the run and debug tab.
214+
```
211215

212216
```{figure} /_static/figures/debugger_2.png
213217
:width: 100%

0 commit comments

Comments
 (0)