Replies: 2 comments
-
Possibly related to ##547. |
Beta Was this translation helpful? Give feedback.
0 replies
-
That text entry box uses https://github.com/rr-/urwid_readline, so probably the most useful course of action would be to extend that to understand vi keys. It's not a priority for me, but if some were to put together PRs to make it happen, I likely wouldn't stand in the way. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The native Python REPL uses readline, meaning configurations set in
~/.inputrc
are respected. One such configuration isset editing-mode vi
, which enables some basic vi motions.pudb
's "internal shell" seems exactly like the native Python REPL, so I had suspected it would use readline as well. However, I am unable to use vi motions in the internal shell, despiteset editing-mode vi
being enumerated in my~/.inputrc
.So how, if at all, can I use vi motions in
pudb
's internal shell? I don't see that this is addressed in the README/documentation.Beta Was this translation helpful? Give feedback.
All reactions