Merge pull request #560 from jdfreder/noignore

Don't list ipython.ignore commands in the help dialog
Min RK 11 years ago
commit 225d86469a

@ -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 = $('<div/>').append($(title));
var sub_div = $('<div/>').addClass('container-fluid');

Loading…
Cancel
Save