X Tutup
Skip to content

Commit e097e14

Browse files
committed
Added pager to the status bar
1 parent 1a83de9 commit e097e14

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bpython/cli.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2145,8 +2145,9 @@ def init_wins(scr, cols):
21452145
# This should show to be configured keys from ~/.bpython/config
21462146
#
21472147
statusbar = Statusbar(scr, main_win,
2148-
".:: <%s> Exit <%s> Rewind <%s> Save <%s> Pastebin ::." %
2149-
(OPTS.exit_key, OPTS.undo_key, OPTS.save_key, OPTS.pastebin_key),
2148+
"<%s> Exit <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager" %
2149+
(OPTS.exit_key, OPTS.undo_key, OPTS.save_key, OPTS.pastebin_key,
2150+
OPTS.last_output_key),
21502151
get_colpair('main'))
21512152

21522153
return main_win, statusbar

0 commit comments

Comments
 (0)
X Tutup