mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-28 01:40:19 +09:00
I'm trying to add more options for plugins that want to run shell commands. Also trying to add support for running shell commands in the terminal emulator from a plugin and return the output. More to come soon. Ref #979
10 lines
171 B
Go
10 lines
171 B
Go
// +build plan9 nacl windows
|
|
|
|
package main
|
|
|
|
const TermEmuSupported = false
|
|
|
|
func RunTermEmulator(input string, wait bool, getOutput bool) string {
|
|
return "Unsupported"
|
|
}
|