blob: 4e0207cebb5688ba965cbd272142b3ccca6ed7ff (
plain)
1
2
3
4
5
6
7
8
9
|
package ansi
// Focus is an escape sequence to notify the terminal that it has focus.
// This is used with [FocusEventMode].
const Focus = "\x1b[I"
// Blur is an escape sequence to notify the terminal that it has lost focus.
// This is used with [FocusEventMode].
const Blur = "\x1b[O"
|