diff --git a/notebook/static/notebook/js/quickhelp.js b/notebook/static/notebook/js/quickhelp.js index 67850c447..0039d0412 100644 --- a/notebook/static/notebook/js/quickhelp.js +++ b/notebook/static/notebook/js/quickhelp.js @@ -272,6 +272,16 @@ define([ }; var build_div = function (title, shortcuts) { + + // Remove ipython.ignore shortcuts. + shortcuts = shortcuts.filter(function(shortcut) { + if (shortcut.help === 'ignore') { + return false; + } else { + return true; + } + }); + var i, half, n; var div = $('
').append($(title)); var sub_div = $('').addClass('container-fluid');