Merge pull request #2138 from takluyver/f-cmd-palette

Add cmdtrl-shift-f shortcut to show command palette
pull/2152/head
Min RK 9 years ago committed by GitHub
commit 0ccb548238

@ -114,6 +114,7 @@ define([
KeyboardManager.prototype.get_default_edit_shortcuts = function() {
return {
'cmdtrl-shift-p' : 'jupyter-notebook:show-command-palette',
'cmdtrl-shift-f' : 'jupyter-notebook:show-command-palette',
'esc' : 'jupyter-notebook:enter-command-mode',
'ctrl-m' : 'jupyter-notebook:enter-command-mode',
'up' : 'jupyter-notebook:move-cursor-up',
@ -125,6 +126,7 @@ define([
KeyboardManager.prototype.get_default_command_shortcuts = function() {
return {
'cmdtrl-shift-p': 'jupyter-notebook:show-command-palette',
'cmdtrl-shift-f': 'jupyter-notebook:show-command-palette',
'shift-space': 'jupyter-notebook:scroll-notebook-up',
'shift-v' : 'jupyter-notebook:paste-cell-above',
'shift-m' : 'jupyter-notebook:merge-cells',

Loading…
Cancel
Save