From 2b001d93947faf286fc23b192fd72414d1f6e85c Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Fri, 9 Oct 2015 07:59:33 -0700 Subject: [PATCH] Add shift-up/down as multiselect kb shortcuts --- notebook/static/notebook/js/keyboardmanager.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/notebook/static/notebook/js/keyboardmanager.js b/notebook/static/notebook/js/keyboardmanager.js index 48698e300..6663438b1 100644 --- a/notebook/static/notebook/js/keyboardmanager.js +++ b/notebook/static/notebook/js/keyboardmanager.js @@ -102,6 +102,8 @@ define([ 'j' : 'ipython.select-next-cell', 'shift-k': 'ipython.extend-selection-previous', 'shift-j': 'ipython.extend-selection-next', + 'shift-up': 'ipython.extend-selection-previous', + 'shift-down': 'ipython.extend-selection-next', 'x' : 'ipython.cut-selected-cell', 'c' : 'ipython.copy-selected-cell', 'v' : 'ipython.paste-cell-after',