Skip to content

Commit ff2aa55

Browse files
authored
Add more information on VSCode debugger interpreted modules (#131)
1 parent 0626cd9 commit ff2aa55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

writing/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,8 @@ Using the toolbar at the top of the editor, you can then _continue_, _step over_
737737
The debugger will open a pane showing information about the code such as local variables inside of the current function, their current values and the full call stack.
738738

739739
The debugger can be [sped up](https://www.julia-vscode.org/docs/dev/userguide/debugging/#Settings-to-speed-up-the-debugger) by selectively compiling modules that you will not need to step into via the `+` symbol at the bottom of the debugging pane.
740-
It is often easiest to start by adding `ALL_MODULES_EXCEPT_MAIN` to the compiled list, and then selectively remove the modules you need to have interpreted.
740+
It is often easiest to start by adding `ALL_MODULES_EXCEPT_MAIN` to the compiled list, and then selectively remove the modules you need to have interpreted
741+
by typing their name into the same `+` menu but with a `-` sign in front e.g. `-MyModule`.
741742
}
742743

743744
<!-- Clean up -->

0 commit comments

Comments
 (0)