mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Added clear output to a keyboard shortcut
This commit is contained in:
parent
a84818c6fe
commit
d89afa1fbb
2 changed files with 14 additions and 0 deletions
|
|
@ -1850,6 +1850,8 @@
|
|||
} else {
|
||||
$scope.showTitle();
|
||||
}
|
||||
} else if (keyEvent.ctrlKey && keyEvent.shiftKey && keyCode === 67) { // Ctrl + shift + c
|
||||
$scope.clearParagraphOutput();
|
||||
} else {
|
||||
noShortcutDefined = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -177,6 +177,17 @@ limitations under the License.
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="keys">
|
||||
<kbd class="kbd-dark">Ctrl</kbd> + <kbd class="kbd-dark">Shift</kbd> + <kbd class="kbd-dark">c</kbd>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
Clear output
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="keys">
|
||||
|
|
@ -199,6 +210,7 @@ limitations under the License.
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<h4>Editor Shortcuts</h4>
|
||||
|
||||
<div class="row">
|
||||
|
|
|
|||
Loading…
Reference in a new issue