You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In vtcmd, arrow keys do not work correctly. In Python3, you can resolve this by importing readline, which will allow standard shell behaviors before the input is loaded into the program. e.g.,
thing = input('>>>')
Followed by ACB<-<-, will result in ACB[[A[[A| (with | the cursor location) on some systems.
However,
import readline
thing = input('>>>')
Followed by the same will result in the desired A|CB.
The text was updated successfully, but these errors were encountered:
In vtcmd, arrow keys do not work correctly. In Python3, you can resolve this by importing readline, which will allow standard shell behaviors before the input is loaded into the program. e.g.,
Followed by
ACB<-<-
, will result inACB[[A[[A|
(with|
the cursor location) on some systems.However,
Followed by the same will result in the desired
A|CB
.The text was updated successfully, but these errors were encountered: