sublimetext2 - Trouble mapping Cmd-Delete key in Sublime Text 2 -


i'm trying map cmd-delete (on mac) delete current line in sublime text 2. added following line in st2 key bindings file:

    { "keys": ["super+delete"], "command": "run_macro_file", "args": {"file": "packages/default/delete line.sublime-macro"} }, 

it doesn't work, i.e. cmd-delete retains default "delete beginning of line" binding. other key bindings, both listed before , after above line in bindings file, work.

what doing wrong?

change "keys" value ["super+delete"] ["super+backspace"].


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

objective c - Ownership modifiers with manual reference counting -

python 3.x - Mapping specific letters onto a list of words -