mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-03 13:21:56 +02:00
11 lines
178 B
Go
11 lines
178 B
Go
// +build windows
|
|
|
|
package gocui
|
|
|
|
import "github.com/jesseduffield/termbox-go"
|
|
|
|
func (g *Gui) getTermWindowSize() (int, int, error) {
|
|
x, y := termbox.Size()
|
|
return x, y, nil
|
|
}
|