I wonder if there is a variable viewer plus editor like MATLAB has. It would be convenient to view values and edit them (if they are mutable) in some variable manager. VScode allows to navigate among variables but it unconveniently bundles everything (packages, variables and methods) to one place and does not allow to edit values. Or did I missed something? How do people solve this need?
1 Like
We can also change the value of any local variable while the program is paused. For example, to change the value of x, we can double click in the
Variables
section on the value 27 next to x and then enter any arbitrary Julia expression. The value this expression returns will become the new value for the variable x.
https://www.julia-vscode.org/docs/stable/userguide/debugging/