我正在SSH隧道(使用VScode终端),并希望使用VScode在隧道中编辑我的文件。 有人可以帮助/提供有关如何执行此操作的指南吗?我似乎无法弄清楚。我看过几篇有关使用远程vscode的文章
答案 0 :(得分:-1)
安装Code Runner和SSH-FS。 像这样配置您的用户设置
"code-runner.runInTerminal":true,
"code-runner.fileDirectoryAsCwd": true,
"code-runner.ignoreSelection": true,
"code-runner.saveFileBeforeRun": true,
"files.eol": "\n",
"sshfs.configs": [
{
"label": "label",
//Must use the root direction "/"
"root": "/",
"host": "host",
"port": port,
"username": "name",
"password": "password"
"name": "name"
}]
通过vscode终端通过ssh登录您的服务器帐户。然后,您可以在远程服务器上编辑并运行代码。