是否可以使用 C-x C-s 在 Sublime Text 3 中保存

Is it possible to use C-x C-s for saving in Sublime Text 3

Sublime Text 3 中是否可以使用 C-x C-s 保存文件 (save_all),同时保留 C-s 作为搜索选项?


ctrl+x+sctrl+xctrl+s 对我没用。

{ "keys": ["ctrl+s"], "command": "find_next", "context":
        [{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}]
},
{ "keys": ["ctrl+x"], "command": "noop" },
{ "keys": ["ctrl+x+s"], "command": "save_all" },
{ "keys": ["ctrl+x+ctrl+s"], "command": "save_all" }

在 Sublime 中像这样绑定键和弦需要您在 keys 列表(这就是为什么它是一个列表)中单独指定两个键。

所以,你想要的是:

{ "keys": ["ctrl+s"], "command": "find_next", "context":
        [{"key": "panel", "operand": "find"}, {"key": "panel_has_focus"}]
},
{ "keys": ["ctrl+x"], "command": "noop" },
{ "keys": ["ctrl+x", "ctrl+s"], "command": "save_all" },

请注意,Ctrl+xnoop 的绑定不需要此工作,因此您可以忽略它。但是,对单个项目和和弦使用相同的键可能需要您按两次键才能让 Sublime 触发命令,否则它无法立即判断您想要哪个绑定。