X Tutup
Skip to content

Commit c7ebd12

Browse files
committed
Show source key added, exit key removed.
1 parent 70a3e46 commit c7ebd12

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

bpython/cli.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,9 +1386,10 @@ def init_wins(scr, colors, config):
13861386
# This should show to be configured keys from ~/.bpython/config
13871387
#
13881388
statusbar = Statusbar(scr, main_win, background,
1389-
" <%s> Exit <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager" %
1390-
(config.exit_key, config.undo_key, config.save_key,
1391-
config.pastebin_key, config.last_output_key),
1389+
" <%s> Rewind <%s> Save <%s> Pastebin <%s> Pager <%s> Show Source " %
1390+
(config.undo_key, config.save_key,
1391+
config.pastebin_key, config.last_output_key,
1392+
config.show_source_key),
13921393
get_colpair(config, 'main'))
13931394

13941395
return main_win, statusbar

0 commit comments

Comments
 (0)
X Tutup