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
2020-10-02 08:09:42 +10:00

14 lines
230 B
Go

// +build windows
package gui
import "os/exec"
func (gui *Gui) onResize() error {
return nil
}
func (gui *Gui) newPtyTask(viewName string, cmd *exec.Cmd, prefix string) error {
return gui.newCmdTask(viewName, cmd, prefix)
}