Just close the pager with q, not toggle.

This commit is contained in:
Brian E. Granger 2014-02-07 19:43:20 -08:00
parent 4e37e901d8
commit 31301c4194

View File

@ -533,10 +533,10 @@ var IPython = (function (IPython) {
}
},
'q' : {
help : 'toggle pager',
help : 'close pager',
help_index : 'gd',
handler : function (event) {
IPython.pager.toggle();
IPython.pager.collapse();
return false;
}
},