added titignore
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
//go:build !linux && !darwin && !windows
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func termWidth() int { return 80 }
|
||||
|
||||
func isTerminal(fd int) bool { return false }
|
||||
|
||||
func makeRaw(fd int) (func(), error) {
|
||||
return nil, fmt.Errorf("raw terminal not supported on this platform")
|
||||
}
|
||||
Reference in New Issue
Block a user