在Windows上尝试Sublime和SFTP插件,我知道我只是愚蠢但是......
如果我使用文件菜单SFTP / FTP浏览服务器命令一切正常。与我的服务器的连接工作,我得到一个文件列表,我可以下载,编辑,上传没有问题。
然而,当我尝试通过右键单击FOLDERS中的文件名并选择上传文件(或执行任何与SFTP相关的操作) SFTP上传文件,插件坚持尝试连接到example.com而不是我创建的服务器。
在users/me/Appdata/Roaming/Sublime Text 2/Packages/User/sftp_servers
我有一个如下所示的服务器配置文件:(某些名称已更改以保护无辜者)
有人能告诉我我做错了吗?
{
// The tab key will cycle through the settings when first created
// Visit http://wbond.net/sublime_packages/sftp/settings for help
// sftp, ftp or ftps
"type": "sftp",
"sync_down_on_open": true,
"sync_same_age": true,
"host": "myhost.name.net",
"user": "fred",
//"password": "password",
//"port": "22",
"remote_path": "/home/fred/",
"file_permissions": "664",
"dir_permissions": "775",
//"extra_list_connections": 0,
"connect_timeout": 30,
//"keepalive": 120,
//"ftp_passive_mode": true,
//"ftp_obey_passive_host": false,
"ssh_key_file": "/users/fred/cryptoKeys/sshKey.ppk",
//"sftp_flags": ["-F", "/path/to/ssh_config"],
//"preserve_modification_times": false,
//"remote_time_offset_in_hours": 0,
//"remote_encoding": "utf-8",
//"remote_locale": "C",
//"allow_config_upload": false,
}