8

sublime text 3 Ctrl+Backspace doesn't work my sublime keymap like this but but still does not work

{ "keys": ["ctrl+backspace"], "command": "delete_word", "args": { "forward": false } },
jebii
  • 81
  • 2

1 Answers1

1

if it dosen't work for you, you can still make your own shorcut : go to preferences>KeyBendings User and define your own : for example

[
{ "keys": ["f1"], "command": "delete_word", "args": { "forward": false } }
]