-
-
Notifications
You must be signed in to change notification settings - Fork 793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Termwiz bugs #2511
Comments
When in raw mode, go to level 2, but use level 1 for cooked so that we don't obfuscate ctrl-c. A consequnce of this is that CTRL-C is now reported to the app as CTRL-lowercase-c where we previously reported as CTRL-uppercase-C. Made a note of the breaking nature of this change in a new changelog file. Fixed recognizing SHIFT-TAB refs: #2511
Shift-A sends only Same goes for
termwiz could request
Thanks; fixed in 42f855d
If wezterm doesn't think the terminal supports 24-bit color, then it will use the palette fallback. |
The indexed color stuff is potentially related to: |
What Operating System(s) are you seeing this problem on?
Windows
Which Wayland compositor or X11 Window manager(s) are you using?
No response
WezTerm version
20220908-191626-25cd05a8
Did you try the latest nightly build to see if the issue is better (or worse!) than your current version?
No, and I'll explain why below
Describe the bug
Hi @wez i need your help. (It is related to the termwiz crate).
I don't know if it's exactly a bug or something I'm not configuring well.
The first is about the
pool_input
function, which returns the InputEvent, but not in the correct way, for example this sequence (using the example termwiz/examples/key_tester.rs):entered value: Shift + A
result:
expected: KeyEvent { key: Char('A'), modifiers: SHIFT}
entered value: Control + j
result:
expected: KeyEvent { key: Char('j'), modifiers: CTRL }
entered value: Control + h
result:
expected: KeyEvent { key: Char('h'), modifiers: CTRL }
entered value: Shift + :
result:
expected: KeyEvent { key: Char(':'), modifiers: SHIFT }
entered value: Shift + Tab
result:
well, the desired is to return only one InputEvent for each interaction and with the correct data.
and secondly, is it normal that ColorAttribute::TrueColorWithPaletteFallback() never works (always returns black) ? I can't get it to show the colors when converting rgb to rgbatuple, only the ansi colors works.
running the example: termwiz/examples/widgets_basic.rs
Is it necessary to detail some additional function for the initialization of the terminal to solve these errors ? or are they some kind of error ?
To Reproduce
No response
Configuration
no config
Expected Behavior
No response
Logs
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: