mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
changed short key from ctrl+shift+c to ctrl+alt+l
This commit is contained in:
parent
d89afa1fbb
commit
225d18d53a
1 changed files with 3 additions and 1 deletions
|
|
@ -762,6 +762,8 @@
|
|||
$scope.editor.commands.bindKey('ctrl-alt-n.', null);
|
||||
$scope.editor.commands.removeCommand('showSettingsMenu');
|
||||
|
||||
$scope.editor.commands.bindKey('ctrl-alt-l', null);
|
||||
|
||||
// autocomplete on 'ctrl+.'
|
||||
$scope.editor.commands.bindKey('ctrl-.', 'startAutocomplete');
|
||||
$scope.editor.commands.bindKey('ctrl-space', null);
|
||||
|
|
@ -1850,7 +1852,7 @@
|
|||
} else {
|
||||
$scope.showTitle();
|
||||
}
|
||||
} else if (keyEvent.ctrlKey && keyEvent.shiftKey && keyCode === 67) { // Ctrl + shift + c
|
||||
} else if (keyEvent.ctrlKey && keyEvent.altKey && keyCode === 76) { // Ctrl + Alt + l
|
||||
$scope.clearParagraphOutput();
|
||||
} else {
|
||||
noShortcutDefined = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue