之前用过SublimeText、Emeditor、Notepad++,2020年5月份开始,与别人合作开发项目,用起了VSCODE,果然好用,爱不释手。
几步配置,让你本地更新的代码直接同步到服务器。
想把远程文件夹demo_remote(remotePath)更新到本地文件夹demo内:
1.VScode安装SFTP插件
2.本地新建文件夹demo
3.Ctrl+Shift+P 执行 SFTP: Config,会自动新建并打开demo/.vscode/sftp.json文件,配置内容如下:
{
"name": "cloud",
"host": "xxx.xxx.xxx.xxx",
"protocol": "sftp",
"port": 22,
"username": "user",
"password": "passwd",
"remotePath": "default path",
"uploadOnSave": true
}
4.Ctrl+Shift+P 执行 SFTP: Download Project,会下载远程remotePath对应的文件夹到本地demo文件夹内
5.开发过程中手动更新本地和远程代码,使得即时生效,右键VSCode界面中目录文件或文件夹,选择Sync Local -> Remote等。
OK,更多插件和调试,才是发挥VSCode的地方。