Change keyboard shortcut in sublime text 2

前端 未结 1 2039
庸人自扰
庸人自扰 2021-02-19 22:40

How do i change the current keys for selecting all with the multiple cursor to CMD + G?

相关标签:
1条回答
  • 2021-02-19 22:56

    The keyboard shortcuts are referrred to as key bindings in Sublime Text 2. There is documentation here and here that will show you how to manipulate them. Click "Preferences" > "Default Key Bindings" to view them. Copy and paste the ones you want to edit into "Preferences" > "User Key Bindings"

    e.g.

     <binding key="cmd+t,u" command="upperCase"/>
    

    As noted in the comments, the config is now in json format for newer Sublime Text.

    e.g.

        { "keys": ["cmd+t,u"], "command": "snake_case" }
    
    0 讨论(0)
提交回复
热议问题