1

New to vscode, search returns nothing.

I'd like to add jshell to the terminal window. Is it possible?

hrs
  • 379
  • 4
  • 12

1 Answers1

1

Try setting the shellArgs for the integrated terminal to launch jshell. On mac, this would be:

"terminal.integrated.shellArgs.osx": [
    "-l",
    "-c",
    "jshell"
]
Matt Bierner
  • 58,117
  • 21
  • 175
  • 206