Skip to content

Instantly share code, notes, and snippets.

@lateau
Last active February 16, 2016 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lateau/e5986af1cd8a83942e4e to your computer and use it in GitHub Desktop.
Save lateau/e5986af1cd8a83942e4e to your computer and use it in GitHub Desktop.
Cloud9 Remove default keybindings
// This remove all keybindings to commands.
const commands = services['commands'];
Object.keys(commands.commands).forEach(c => {
var cmd = commands.commands[c],
noBinding = '';
commands.bindKey(noBinding, cmd);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment