mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
19 lines
286 B
Go
19 lines
286 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package gui
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/jesseduffield/gocui"
|
|
)
|
|
|
|
func (gui *Gui) onResize() error {
|
|
return nil
|
|
}
|
|
|
|
func (gui *Gui) newPtyTask(view *gocui.View, cmd *exec.Cmd, prefix string) error {
|
|
return gui.newCmdTask(view, cmd, prefix)
|
|
}
|