mirror of https://github.com/Hilbis/Hilbish
10 lines
188 B
Go
10 lines
188 B
Go
|
// +build plan9
|
||
|
|
||
|
package readline
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
func (rl *Instance) launchEditor(multiline []rune) ([]rune, error) {
|
||
|
return rl.line, errors.New("Not currently supported on Plan 9")
|
||
|
}
|