]> git.lizzy.rs Git - micro.git/blob - internal/action/terminal_unsupported.go
Merge branch 'master' of https://github.com/dbeef/micro into dbeef-master
[micro.git] / internal / action / terminal_unsupported.go
1 // +build !linux,!darwin,!freebsd,!dragonfly,!openbsd_amd64
2
3 package action
4
5 import "errors"
6
7 const TermEmuSupported = false
8
9 func RunTermEmulator(input string, wait bool, getOutput bool, callback string, userargs []interface{}) error {
10         return errors.New("Unsupported operating system")
11 }