mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-10-08 22:52:12 +02:00
- Remove old-style build tags (the +build syntax has become obsolete with 1.17) - Remove redundant build tags from '*_windows.go' files
16 lines
248 B
Go
16 lines
248 B
Go
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)
|
|
}
|