removes commands from default commands

This commit is contained in:
Matthew Kastor 2013-04-04 17:04:18 -04:00 committed by nightwing
commit 9e9cdb3c48

View file

@ -45,6 +45,16 @@ exports.commands = [{
name: "showSettingsMenu",
bindKey: bindKey("Ctrl-,", "Command-,"),
exec: function (editor) {
config.loadModule("ace/ext/show_keyboard_shortcuts", function (e) {
e(editor);
});
},
readOnly: true
}, {
name: "selectall",
bindKey: bindKey("Ctrl-A", "Command-A"),
exec: function(editor) { editor.selectAll(); },
readOnly: true
}, {
name: "centerselection",
bindKey: bindKey(null, "Ctrl-L"),