From 279bd4a958eb98b0afeb405671de26b2803353a2 2014-12-08 21:45:14 From: Nathan Heijermans Date: 2014-12-08 21:45:14 Subject: [PATCH] Removed keyboard shortcut. --- diff --git a/IPython/html/static/notebook/js/actions.js b/IPython/html/static/notebook/js/actions.js index 9470ff6..f91091d 100644 --- a/IPython/html/static/notebook/js/actions.js +++ b/IPython/html/static/notebook/js/actions.js @@ -253,14 +253,6 @@ define(['require' env.notebook.delete_cell(); } }, - 'show-other-output':{ - help: 'show/ignore output from other clients', - icon: 'fa-sitemap', - help_index: 'gb', - handler: function (env) { - env.notebook.toggle_ignore_unsolicited_msgs(); - } - }, 'interrupt-kernel':{ icon: 'fa-stop', help_index : 'ha', diff --git a/IPython/html/static/notebook/js/keyboardmanager.js b/IPython/html/static/notebook/js/keyboardmanager.js index 3aa465e..4c6323f 100644 --- a/IPython/html/static/notebook/js/keyboardmanager.js +++ b/IPython/html/static/notebook/js/keyboardmanager.js @@ -95,7 +95,6 @@ define([ 'space' : 'ipython.scroll-down', 'down' : 'ipython.select-next-cell', 'i,i' : 'ipython.interrupt-kernel', - 'e': 'ipython.show-other-output', '0,0' : 'ipython.restart-kernel', 'd,d' : 'ipython.delete-cell', 'esc': 'ipython.close-pager',