What system are you running Yazi on?Linux Wayland What terminal are you running Yazi in?kitty 0.41.1
|
Replies: 2 comments 5 replies
|
That's likely because your terminal's response contains Unfortunately, I don't think this can be fixed on Yazi's side. Fixing it would require A workaround is to avoid using |

That's likely because your terminal's response contains
ESC [, while you've bound theAlt+[key -Alt+[isESC [which is the CSI introducer, andtmuxbreaks the whole sequence and parses this introducer alone as a key press instead of waiting for the entire subsequent sequence and forwarding it to Yazi as-is.Unfortunately, I don't think this can be fixed on Yazi's side. Fixing it would require
tmuxto either wait for and recognize the complete sequence (instead of treating its beginning as a key event), or to support temporarily disabling user keystrokes during response for its passthrough, just to make it behaves more like a real terminal. See #4334 (comment) for more context.A workar…