added titignore

This commit is contained in:
Luxferre
2026-08-08 23:10:10 +03:00
parent e64fa242fd
commit f50217e6fd
9 changed files with 870 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
//go:build windows
package main
import "errors"
func termWidth() int { return 80 }
func isTerminal(fd int) bool { return false }
func makeRaw(fd int) (func(), error) { return nil, errors.New("raw terminal not supported on windows") }