1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/gui/pty_windows.go

19 lines
286 B
Go
Raw Normal View History

2021-09-16 15:38:43 +02:00
//go:build windows
2020-03-03 13:41:35 +02:00
// +build windows
package gui
2021-04-05 14:06:09 +02:00
import (
"os/exec"
"github.com/jesseduffield/gocui"
)
2020-03-03 13:41:35 +02:00
func (gui *Gui) onResize() error {
return nil
}
2021-04-05 14:06:09 +02:00
func (gui *Gui) newPtyTask(view *gocui.View, cmd *exec.Cmd, prefix string) error {
return gui.newCmdTask(view, cmd, prefix)
2020-03-03 13:41:35 +02:00
}