Hi! Is it possible to start a Julia REPL from the command line directly in shell>
or pkg>
mode without having to type ;
or ]
, respectively, after the REPL loads? For example, something like:
$ julia
julia>
$ julia --shell-mode
shell>
$ julia --pkg-mode
pkg>
The reason I ask is because I would like to make the Julia shell>
prompt my default terminal in vscode, but I sometimes encounter issues when extensions (e.g. C++ debugging) try to run commands from the default julia>
terminal, e.g. julia> cmd /C "..."
instead of shell> cmd /C "..."
.
Thanks!