Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/userguide/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Configure this setting as follows.
"-Statistics.",
]
```
`ALL_MODULES_EXCEPT_MAIN` will make all modules run in compiled mode except the Main module, which contains the code you wrote. We also use "-Statistics." to remove this module and all its submodules from the list of compiled modules, such that it will be interpreted.
`ALL_MODULES_EXCEPT_MAIN` will make all modules run in compiled mode except the Main module, which contains the code you wrote. We also use "-Statistics." to remove this module and all its submodules from the list of compiled modules, such that it will be interpreted. For this change to apply, run "Julia: Apply default compiled modules/functions" from the VSCode Command Palette.

### Use a custom sys image
Custom julia sys images can also be used when debugging. Go to julia-vscode extension settings and click to edit "Additional Args".
Expand Down
Loading