Sublime Forum

How to disable all key bindings at once?

#1

I want only manually bind key bindings that i’m using and keep it clean, can i possibly unbind every key bindings at once?

1 Like

#2

You best bet is to create override files for all .sublime-keymap files that only contain [], I. E. No bindings at all. This could even be automated, but I suggest doing it manually for now (because I’m not at a pc and you’ll better understand what you are doing).

Use sublime.find_resources("*.suhlime-keymap") to find keymap files and refer to http://docs.sublimetext.info/en/latest/extensibility/packages.html#customizing-or-overriding-packages for documentation on overrides.

1 Like