how to override shortcut for multiple cursors sublime text 3?

后端 未结 2 1812
无人及你
无人及你 2021-02-10 20:38

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 f

2条回答
  •  佛祖请我去吃肉
    2021-02-10 21:19

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

提交回复
热议问题