How to unbind a key binding in Sublime Text 2?

前端 未结 6 648
走了就别回头了
走了就别回头了 2020-12-24 12:02

I have a habit of hitting CTRL+T to open a new tab in ST2. However this invokes the transpose function. I could map the new_file command t

6条回答
  •  猫巷女王i
    2020-12-24 12:38

    I have never see or read any official documentation about the unbound command, but it works. Another option would be removing the command attribute.

    { "keys": ["ctrl+t"] }
    

    This will also unbound a key binding.

提交回复
热议问题