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

14 lines
230 B
Go
Raw Normal View History

2020-03-03 13:41:35 +02:00
// +build windows
package gui
import "os/exec"
func (gui *Gui) onResize() error {
return nil
}
2020-10-01 23:42:29 +02:00
func (gui *Gui) newPtyTask(viewName string, cmd *exec.Cmd, prefix string) error {
return gui.newCmdTask(viewName, cmd, prefix)
2020-03-03 13:41:35 +02:00
}