You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/userguide/debugging.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,3 +109,17 @@ Your code will run a lot faster with this option enabled.
109
109
110
110
### Troubleshooting
111
111
If you encounter any issue when using the debugger, Please do let us know about it over at the [Julia VS Code](https://github.com/julia-vscode/julia-vscode) repository.
112
+
113
+
114
+
## Settings to speed-up the debugger
115
+
### `ALL_MODULES_EXCEPT_MAIN`
116
+
In order to make the debugger run faster we want to minimize the number of packages/modules which are interpreted.
117
+
Let's say you need to debug the code you wrote, but also the functionality provided by the package Statistics.
118
+
Click on the Debugger Default Compiled extension setting.
119
+
120
+

121
+
122
+
Configure this setting as in the picture bellow.
123
+
`ALL_MODULES_EXCEPT_MAIN` will make everything run in compiled mode except for Main. We also use "-Statistics." to remove this package from the list of compiled modules, such that it will be interpreted.
0 commit comments