1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-22 05:29:44 +02:00
lazygit/pkg/gui/pty_windows.go

14 lines
230 B
Go
Raw Normal View History

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