removes commands from default commands
This commit is contained in:
parent
0631a708bc
commit
9e9cdb3c48
1 changed files with 10 additions and 0 deletions
|
|
@ -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"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue