X Tutup
Skip to content

Commit 82389e2

Browse files
committed
Add data/bpython-urwid.
1 parent a568e85 commit 82389e2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

bpython/urwid.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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',

data/bpython-urwid

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env python
2+
3+
import sys
4+
from bpython.urwid import main
5+
6+
sys.exit(main())

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)
X Tutup