New to vscode, search returns nothing.
I'd like to add jshell to the terminal window. Is it possible?
New to vscode, search returns nothing.
I'd like to add jshell to the terminal window. Is it possible?
Try setting the shellArgs
for the integrated terminal to launch jshell
. On mac, this would be:
"terminal.integrated.shellArgs.osx": [
"-l",
"-c",
"jshell"
]