mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-11 15:12:47 +09:00
14 lines
445 B
Go
14 lines
445 B
Go
//go:build plan9 || nacl || windows
|
|
|
|
package action
|
|
|
|
import "errors"
|
|
|
|
// TermEmuSupported is a constant that marks if the terminal emulator is supported
|
|
const TermEmuSupported = false
|
|
|
|
// RunTermEmulator returns an error for unsupported systems (non-unix systems
|
|
func RunTermEmulator(input string, wait bool, getOutput bool, callback func(out string, userargs []any), userargs []any) error {
|
|
return errors.New("Unsupported operating system")
|
|
}
|