how to override shortcut for multiple cursors sublime text 3?

后端 未结 2 1899
-上瘾入骨i
-上瘾入骨i 2021-02-10 20:35

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:27

    Go to Preferences > Key Binding - User
    and add following lines to override default key bindings.

    { "keys": ["ctrl+space+down"], "command": "select_lines", "args": {"forward": true} },
    { "keys": ["ctrl+space+up"], "command": "select_lines", "args": {"forward": false} }
    

    where

    ctrl+space+up/down 
    

    is your key bindings.

提交回复
热议问题