mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 12:04:39 +08:00
Document max CSI parameter count
This commit is contained in:
parent
21860cbd39
commit
daa2f2d023
|
@ -806,6 +806,7 @@ pub trait InputEventQueuer {
|
|||
|
||||
fn parse_csi(&mut self, buffer: &mut Vec<u8>) -> Option<Key> {
|
||||
let mut next_char = |zelf: &mut Self| zelf.try_readb(buffer).unwrap_or(0xff);
|
||||
// The maximum number of CSI parameters is defined by NPAR, nominally 16.
|
||||
let mut params = [[0_u32; 4]; 16];
|
||||
let mut c = next_char(self);
|
||||
let private_mode;
|
||||
|
|
Loading…
Reference in New Issue
Block a user