mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
11 lines
210 B
Go
11 lines
210 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package peco
|
|
|
|
// PostInit is a no-op on POSIX systems. tcell auto-detects
|
|
// color capability via terminfo.
|
|
func (t *Termbox) PostInit(cfg *Config) error {
|
|
return nil
|
|
}
|