[−][src]Macro anes::csi
Creates a control sequence.
This macro prepends provided sequence with the control sequence introducer ESC [ (\x1B[).
Examples
use anes::csi; let switch_to_alternate_screen = csi!("?1049h"); assert_eq!(switch_to_alternate_screen, "\x1B[?1049h");