mirror of
https://github.com/Hilbis/Hilbish
synced 2025-03-13 18:00:41 +00:00
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")
|
|
}
|