sublimetext2 - Sublime Text: Changing binding for 'unfold' command -


in sublime text can change key bindings our needs. can't find way overwrite basic binding unfold functionality. have next code in key bindings - user file:

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

ctrl+keypad4 works expected, binding ctrl+keypad5 not work @ all. how fix it? don't want change global keymap.

you have close bracket in there. should be:

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

Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -