mirror of https://github.com/Hilbis/Hilbish
11 lines
283 B
Go
11 lines
283 B
Go
|
//go:build windows
|
||
|
|
||
|
package readline
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// StartEditorWithBuffer - Not implemented on Windows platforms.
|
||
|
func (rl *Instance) StartEditorWithBuffer(multiline []rune, filename string) ([]rune, error) {
|
||
|
return rl.line, errors.New("Not currently supported on Windows")
|
||
|
}
|