gitstack

grindlemire/go-tui code browser

223 B Go 9 lines 2026-03-15 · 4765f41 raw
1
2
3
4
5
6
7
8
9
//go:build windows

package tui

// NegotiateKittyKeyboard is a no-op on Windows.
// The Kitty keyboard protocol is not supported on Windows terminals.
func (t *ANSITerminal) NegotiateKittyKeyboard() bool {
	return false
}