Control + ; not working #2089
-
Hi there, I use "ctrl-;" in neovim quite a bit but it seems in blink only the ";" character is sent. Is this an ipados limitation or something to do with blink? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
"Ctrl-;" is a non standard sequence and Blink has no knowledge of it. The From here, you probably need it to write "\x1b[59;5u" (configure Send Input as String). More info on codes here |
Beta Was this translation helpful? Give feedback.
"Ctrl-;" is a non standard sequence and Blink has no knowledge of it. The
Ctrl-;
you expect is most probably part of the "CSI u extended sequences". The simplest solution is to just define what you want Blink to send for you, by going to Config > Keyboard and Custom Presses. You can see a similar example here. You can figure out what you need to send by using the output fromshowkey -a
from another terminal where this works for you.From here, you probably need it to write "\x1b[59;5u" (configure Send Input as String).
More info on codes here