mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +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)
 | |
| }
 |