I want to set multiple options to Julia: Additional Args, but it doesn't accept multiple args.
e.g.
"julia.additionalArgs": ["--sysimage=filename.so"]
works well but
"julia.additionalArgs": ["-g 2 --sysimage=filename.so"]
doesn't work.
in https://github.com/julia-vscode/julia-vscode/blob/master/src/repl.ts
let jlarg1 = ['-i','--banner=no'].concat(vscode.workspace.getConfiguration("julia").get("additionalArgs"))
doesn't split and add multiple args.