Sublime Text 3 remove default keyboard shortcut

sublime-textsublime-text-3

I find no way to unset or remove default keyboard shortcuts in Sublime Text 3. The default settings are not editable anymore, so I have this in there:

{ "keys": ["f2"], "command": "next_bookmark" },

I have tried "command": "unbound" in user settings but it just unbinds the "next_bookmark" command from it, the key is still intercepted and captured by ST3. I have some important global shortcuts which I'm simply unable to use without switching to another window first.

Is there any way of solving this?

Best Answer

You can override the default package. To do this easily, you can use https://github.com/skuroda/PackageResourceViewer. Open the Default/Default (your os).sublime-keymap file, make your edits, then save the file. The plugin will place it in the proper location to override the default bundled file.

Related Question