terminal_windows.go

1//go:build windows
2
3package view
4
5// getCellHeightFromFd is not supported on Windows.
6// Returns 0 to fall back to the default cell height.
7func getCellHeightFromFd(fd int) int {
8	return 0
9}