我可以将 jshell repl (java 9) 添加到 vscode 的终端面板吗?
Can i add jshell repl (java 9) to vscode's terminal panel?
新 vscode,搜索 returns 什么都没有。
我想将 jshell 添加到终端 window。可能吗?
尝试 setting shellArgs
集成终端启动 jshell
。在 mac 上,这将是:
"terminal.integrated.shellArgs.osx": [
"-l",
"-c",
"jshell"
]
新 vscode,搜索 returns 什么都没有。
我想将 jshell 添加到终端 window。可能吗?
尝试 setting shellArgs
集成终端启动 jshell
。在 mac 上,这将是:
"terminal.integrated.shellArgs.osx": [
"-l",
"-c",
"jshell"
]