Similar to #531
This works
[shell]
program = "pwsh -nologo"
args = []
This doesn't
[shell]
program = "pwsh"
args = ["-nologo"]
If you start the msys2 command line with a command with parameters, it will exit rio and start a new windows window
# [shell]
# program = "C:\\msys64\\msys2_shell.cmd -defterm -here -no-start -mingw64 -use-full-path -shell fish"
# args = []
[shell]
program = "C:\\msys64\\msys2_shell.cmd"
args = [
"-defterm",
"-here",
"-no-start",
"-ucrt64",
"-use-full-path",
"-shell",
"fish",
]
I hope to be able to start the msys2 shell with parameters, so that the behavior will be consistent with the configuration of wt and vscode
Similar to #531
This works
This doesn't
If you start the msys2 command line with a command with parameters, it will exit rio and start a new windows window
I hope to be able to start the msys2 shell with parameters, so that the behavior will be consistent with the configuration of wt and vscode