mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
11 lines
193 B
Go
11 lines
193 B
Go
package peco
|
|
|
|
import "github.com/nsf/termbox-go"
|
|
|
|
func (t *Termbox) PostInit() error {
|
|
// Windows handle Esc/Alt self
|
|
termbox.SetInputMode(termbox.InputEsc | termbox.InputAlt)
|
|
|
|
return nil
|
|
}
|