From da334e782eeccb7cae078d74dcf6142372b24214 Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Fri, 7 Mar 2014 14:48:09 -0800 Subject: [PATCH] focus next cell on shift+enter --- IPython/html/static/notebook/js/notebook.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/static/notebook/js/notebook.js b/IPython/html/static/notebook/js/notebook.js index cc2d64842..05cb955c1 100644 --- a/IPython/html/static/notebook/js/notebook.js +++ b/IPython/html/static/notebook/js/notebook.js @@ -1511,6 +1511,7 @@ var IPython = (function (IPython) { this.command_mode(); this.select(cell_index+1); + this.focus_cell(); this.set_dirty(true); };