Files
zyedidia.micro/cmd/micro/shell_windows.go
2018-01-20 23:34:16 -05:00

12 lines
216 B
Go

// +build plan9 nacl windows
package main
import "errors"
const TermEmuSupported = false
func RunTermEmulator(input string, wait bool, getOutput bool) error {
return errors.New("Unsupported operating system")
}