Lines Matching full:esc
3 /// This macro prepends provided sequence with the control sequence introducer `ESC [` (`\x1B[`).
19 /// This macro prepends provided sequence with the `ESC` (`\x1B`) character.
24 /// use anes::esc;
26 /// assert_eq!(esc!("7"), "\x1B7");
29 macro_rules! esc { macro
35 /// This macro prepends provided sequence with the `ESC[` (`\x1B[`) character and appends `m` chara…
61 /// use anes::{esc, sequence};
65 /// struct SaveCursorPosition => esc!("7")
307 fn esc() { in esc() function
308 assert_eq!(esc!("bar"), "\x1Bbar"); in esc()
330 Bar => esc!("bar"), in static_enum_sequence()