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
If laptop differs it's probably due to the keyboard layout or browser? We pass keys through pretty consistently so not sure how this could be a problem on our end.
C0.ESC is how you start an escape sequence which is what the F keys are meant to do, so not sure what you mean? I haven't used the function keys much though and they're mostly inaccessible in vscode so there could be a bug here.
Details
Facing different output from xterm terminal for function keys (F1->F12) compared to laptop terminal.
Steps to reproduce
while true; do
read -s -n 1 key
echo "You typed [$key]."
[[ $key == 'q' ]] && break
done
echo "Quitting."
Laptop output: (macOS 13, zsh shell):
(12:40:54) tmp $ ./reader.sh
You typed [a].
You typed [
ou typed [[].
You typed [1].
You typed [9].
You typed [~].
You typed [
ou typed [[].
You typed [2].
You typed [9].
You typed [~].
You typed [q].
Quitting.
Xterm terminal output: will hanging in the middle for a long time without any result
The text was updated successfully, but these errors were encountered: