mirror of
https://github.com/zyedidia/micro.git
synced 2025-06-18 14:55:38 -04:00
14 lines
498 B
Go
14 lines
498 B
Go
//go:build !linux && !darwin && !freebsd && !dragonfly && !openbsd_amd64
|
|
|
|
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 []interface{}), userargs []interface{}) error {
|
|
return errors.New("Unsupported operating system")
|
|
}
|