1

In Sublime Text we can change key bindings for our needs. But I can't find way to overwrite basic binding for unfold functionality. I have next code in my Key bindings - User file:

{ "keys": ["ctrl+keypad4"], "command": "fold" },
{ "keys": ["ctrl+keypad5]"], "command": "unfold" },

ctrl+keypad4 works as expected, but binding for ctrl+keypad5 not work at all. How to fix it? I don't want to change global keymap.

4

1 回答 1

1

你在那里有一个额外的右括号。它应该是:

{ "keys": ["ctrl+keypad5"], "command": "unfold" },
于 2013-08-09T20:38:04.577 回答