刚切换到sublime并安装了SFTP包。
我想要做的是:shift + command + U然后将上传我正在查看的文件。
我查看了键绑定文件并看到了:
{ "keys": ["super+ctrl+u","super+ctrl+f"], "command": "sftp_upload_file" },
{ "keys": ["super+ctrl+u","super+ctrl+r"], "command": "sftp_upload_folder" },
{ "keys": ["super+ctrl+u","super+ctrl+y"], "command": "sftp_sync_up" },
{ "keys": ["super+ctrl+u","super+ctrl+n"], "command": "sftp_upload_open_files" },
{ "keys": ["super+ctrl+u","super+ctrl+m"], "command": "sftp_monitor_file" },
但这对我没有意义。
他们都以相同的“超级+ ctrl + u”开头,我似乎无法找到有关此内容的任何信息。
谢谢!
答案 0 :(得分:2)
每个键绑定都是两个多键按键。
即。同时按 super + ctrl + u ,然后释放,然后按 super + ctrl + f 同时。
或者,如果您不喜欢这些,请将命令重新映射到不同的键绑定。