1package termbox
2
3// On macOS, enable behavior which will wait before deciding that the escape
4// key was pressed, to account for partially send escape sequences, especially
5// with regard to lengthy mouse sequences.
6// See https://github.com/nsf/termbox-go/issues/132
7func enable_wait_for_escape_sequence() bool {
8	return true
9}
10