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
fix(tui/windows): fix text prompts on windows not displaying any text (#463)
This change addresses #389.
The _crossterm_ implementation on Windows places the terminal in Raw
Mode, which means:
> Input will not be forwarded to screen
> Input will not be processed on enter press
> Special keys like backspace and CTRL+C will not be processed by
terminal driver
To address these issues, I've made the echoing explicit to ensure user
input is visible, and also added support for Backspace, as it didn't
work previously.
I've tested this on Windows and confirmed it's working correctly, with
the username and confirmation displayed as expected, and the password
remaining hidden. I haven't tested on Linux yet, but it should be
working just fine; please kindly verify it first.


fixes#389
0 commit comments