I want to remove ctrl+left and ctrl+right from all keybindigs in sublime. I found all mentions of these combinations in settings file and replaced them with other combinations in keymap file for user.
[
{ “keys”: [“f1”], “command”: “toggle_side_bar” },
{ "keys": ["ctrl+space+right"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+space+left"], "command": "prev_view_in_stack" },
{ "keys": ["ctrl+k", "ctrl+d"], "command": "focus_neighboring_group", "args": {"forward": false} },
{ "keys": ["ctrl+k", "ctrl+d"], "command": "focus_neighboring_group" },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "words", "forward": false} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "word_ends", "forward": true} },
]
But sublime still switching tabs when i press ctrl+left or ctrl+right. What am i doing wrong?