如何在通过 ftp-VS Code 上的简单扩展上传时为 "overwrite" 做快捷方式
How can I do shortcut for "overwrite" while uploading via ftp-simple extension on VS Code
我在 VS 代码上使用 ftp-简单扩展。每次我将文件上传到 FTP 服务器时,我都厌倦了按覆盖按钮。
我可以创建一个快捷方式(如 Ctrl+alt+S)来覆盖扩展程序而无需在上传到 FTP 时询问吗?
我从扩展的 ftp-simple 文档中看到有一个选项:
confirm
- boolean - (option) Only save option. When you save the file,
ask if you want to overwrite the file if it already exists.. Default:
true
所以
"confirm" : false,
应该消除你看到的warning/verification。
我在 VS 代码上使用 ftp-简单扩展。每次我将文件上传到 FTP 服务器时,我都厌倦了按覆盖按钮。 我可以创建一个快捷方式(如 Ctrl+alt+S)来覆盖扩展程序而无需在上传到 FTP 时询问吗?
我从扩展的 ftp-simple 文档中看到有一个选项:
confirm
- boolean - (option) Only save option. When you save the file, ask if you want to overwrite the file if it already exists.. Default: true
所以
"confirm" : false,
应该消除你看到的warning/verification。