镜像自地址
https://github.com/Hilbis/Hilbish
已同步 2025-07-09 04:22:03 +00:00
11 行
283 B
Go
11 行
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")
|
|
}
|