jebii
jebii

Reputation: 81

sublime text 3 ctrl backspace doesn't work

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 } },

Upvotes: 8

Views: 1610

Answers (1)

Yassine EL MALKI
Yassine EL MALKI

Reputation: 162

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 } }
]

Upvotes: 1

Related Questions