Is there a way to unbind a keybinding without knowing what command it's bound to? I could search byName, but I hoped there was a built-in.
For example, I have my own key bindings for certain things; and if a user chooses one that's assigned to an ACE command it doesnt fire. So when a user select CTRL-F for some function, I want to be able to disable the key in ace. Iv'e tried
editor.command.bindKey('CTRL-F',null);
but that doesnt work.