File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1280,7 +1280,6 @@ def load_urwid_command_map(config):
12801280 'clear_screen': 'C-l',
12811281 'clear_word': 'C-w',
12821282 'cut_to_buffer': 'C-k',
1283- 'delete': 'C-d',
12841283 'down_one_line': 'C-n',
12851284 'exit': '',
12861285 'last_output': 'F9',
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ import sys
4+ from bpython .urwid import main
5+
6+ sys .exit (main ())
Original file line number Diff line number Diff line change @@ -132,8 +132,9 @@ def initialize_options(self):
132132 ]
133133 },
134134 scripts = ([] if using_setuptools else ['data/bpython' ,
135- 'data/bpython-gtk' ]),
135+ 'data/bpython-gtk' ,
136+ 'data/bpython-urwid' ]),
136137 cmdclass = cmdclass
137138)
138139
139- # vim: encoding =utf-8 sw=4 ts=4 sts=4 ai et sta
140+ # vim: fileencoding =utf-8 sw=4 ts=4 sts=4 ai et sta
You can’t perform that action at this time.
0 commit comments