urwid_readline
urwid_readline copied to clipboard
readline text edit for urwid
when "up" key is pressed and the editor is already at the first line, keypress should be considered not handled and propagated to parent widget, that seems to be already...
close #24
For posterity, I'm coming here from inducer/pudb#633 (paging @inducer) So far as I can tell, `urwid_readline` does not support vi mode keybindings. However, [this similar module from a different project](https://github.com/laktak/urwid_viedit/blob/master/urwid_viedit/viedit.py)...
I'm looking at packaging urwid_readline into Fedora, since it's the missing prereq needed to update our 4-year-old Pudb package. But while working on the submission, I discovered that the [urwid_readline-0.13.tar.gz](https://files.pythonhosted.org/packages/ab/bb/c5b3fec22268d97ad30232f5533d4a5939d4df7ed3917a8d20d447f1d0a7/urwid_readline-0.13.tar.gz)...
One of the features of GNU Readline we are all familiar with is the history: `up` for the previous command, `ctrl r` for reverse search... It would be a great...
@rr- We have this need in zulip-terminal of taking spaces into account while using autocomplete (for example, autocompleting full names of users) Would it be possible to achieve this with...
I'm getting this warning with `urwid-readline 0.14` and `urwid 2.6.15`. It comes from readline_edit.py: ```python def _is_valid_key(char): return urwid.util.is_wide_char(char, 0) or ( len(char) == 1 and ord(char) >= 32 )...
https://pythonwheels.com/ Right now, only the `tar.gz` file is being distributed on PyPI for [urwid-readline](https://pypi.python.org/pypi/urwid-readline), which isn't _that much_ of an issue, but it does add some time to installing the...