Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to override shortcut for multiple cursors sublime text 3?

Tags:

sublimetext3

I am using linux [FEDORA 20]. I want to override shortcut key for multiple cursor which is
ctrl+alt+up/down
because it is used for switching workspace in fedora. I tired to search shortcut in
Preferences>key binding - default.
But couldn't find it. So how do i override it?

like image 331
Gautam Kumar Avatar asked Nov 29 '22 14:11

Gautam Kumar


1 Answers

CtrlAlt/ is the keyboard shortcut for multiple selection in Windows, not Linux. The following is from the Linux keymap file:

{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
like image 85
MattDMo Avatar answered Jun 25 '23 21:06

MattDMo