Files
coder/cli/cliui/cliui_other.go
Kyle Carberry ccba2ba99d fix: Remove line length limit on MacOS for input prompts (#839)
This caused inputs to be truncated on MacOS terminals.
2022-04-03 18:09:55 +00:00

11 lines
182 B
Go

//go:build !darwin
// +build !darwin
package cliui
import "golang.org/x/xerrors"
func removeLineLengthLimit(_ int) (func(), error) {
return nil, xerrors.New("not implemented")
}