mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	Update gocui
This commit is contained in:
		
							
								
								
									
										2
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								go.mod
									
									
									
									
									
								
							| @@ -17,7 +17,7 @@ require ( | ||||
| 	github.com/integrii/flaggy v1.4.0 | ||||
| 	github.com/jesseduffield/generics v0.0.0-20220320043834-727e535cbe68 | ||||
| 	github.com/jesseduffield/go-git/v5 v5.1.2-0.20201006095850-341962be15a4 | ||||
| 	github.com/jesseduffield/gocui v0.3.1-0.20220417002912-bce22fd599f6 | ||||
| 	github.com/jesseduffield/gocui v0.3.1-0.20220723050330-1f853fadb335 | ||||
| 	github.com/jesseduffield/kill v0.0.0-20220618033138-bfbe04675d10 | ||||
| 	github.com/jesseduffield/minimal/gitignore v0.3.3-0.20211018110810-9cde264e6b1e | ||||
| 	github.com/jesseduffield/yaml v2.1.0+incompatible | ||||
|   | ||||
							
								
								
									
										4
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								go.sum
									
									
									
									
									
								
							| @@ -72,8 +72,8 @@ github.com/jesseduffield/generics v0.0.0-20220320043834-727e535cbe68 h1:EQP2Tv8T | ||||
| github.com/jesseduffield/generics v0.0.0-20220320043834-727e535cbe68/go.mod h1:+LLj9/WUPAP8LqCchs7P+7X0R98HiFujVFANdNaxhGk= | ||||
| github.com/jesseduffield/go-git/v5 v5.1.2-0.20201006095850-341962be15a4 h1:GOQrmaE8i+KEdB8NzAegKYd4tPn/inM0I1uo0NXFerg= | ||||
| github.com/jesseduffield/go-git/v5 v5.1.2-0.20201006095850-341962be15a4/go.mod h1:nGNEErzf+NRznT+N2SWqmHnDnF9aLgANB1CUNEan09o= | ||||
| github.com/jesseduffield/gocui v0.3.1-0.20220417002912-bce22fd599f6 h1:Fmay0Lz21taUpXiIbFkjjIIcn0E5GKwp5UFRuXaOiGQ= | ||||
| github.com/jesseduffield/gocui v0.3.1-0.20220417002912-bce22fd599f6/go.mod h1:znJuCDnF2Ph40YZSlBwdX/4GEofnIoWLGdT4mK5zRAU= | ||||
| github.com/jesseduffield/gocui v0.3.1-0.20220723050330-1f853fadb335 h1:36XGBaxzg5umrZO99Ir7Y7zpJPlOzOq8rDZUuTUrCvI= | ||||
| github.com/jesseduffield/gocui v0.3.1-0.20220723050330-1f853fadb335/go.mod h1:znJuCDnF2Ph40YZSlBwdX/4GEofnIoWLGdT4mK5zRAU= | ||||
| github.com/jesseduffield/kill v0.0.0-20220618033138-bfbe04675d10 h1:jmpr7KpX2+2GRiE91zTgfq49QvgiqB0nbmlwZ8UnOx0= | ||||
| github.com/jesseduffield/kill v0.0.0-20220618033138-bfbe04675d10/go.mod h1:aA97kHeNA+sj2Hbki0pvLslmE4CbDyhBeSSTUUnOuVo= | ||||
| github.com/jesseduffield/minimal/gitignore v0.3.3-0.20211018110810-9cde264e6b1e h1:uw/oo+kg7t/oeMs6sqlAwr85ND/9cpO3up3VxphxY0U= | ||||
|   | ||||
							
								
								
									
										8
									
								
								vendor/github.com/jesseduffield/gocui/gui.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/github.com/jesseduffield/gocui/gui.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1158,9 +1158,11 @@ func (g *Gui) onKey(ev *GocuiEvent) error { | ||||
| 			if len(v.Tabs) > 0 { | ||||
| 				tabIndex := v.GetClickedTabIndex(mx - v.x0) | ||||
|  | ||||
| 				for _, binding := range g.tabClickBindings { | ||||
| 					if binding.viewName == v.Name() { | ||||
| 						return binding.handler(tabIndex) | ||||
| 				if tabIndex >= 0 { | ||||
| 					for _, binding := range g.tabClickBindings { | ||||
| 						if binding.viewName == v.Name() { | ||||
| 							return binding.handler(tabIndex) | ||||
| 						} | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
|   | ||||
							
								
								
									
										15
									
								
								vendor/github.com/jesseduffield/gocui/view.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								vendor/github.com/jesseduffield/gocui/view.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1214,15 +1214,22 @@ func (v *View) GetClickedTabIndex(x int) int { | ||||
| 		return 0 | ||||
| 	} | ||||
|  | ||||
| 	charIndex := 0 | ||||
| 	charX := 1 | ||||
| 	if x <= charX { | ||||
| 		return -1 | ||||
| 	} | ||||
| 	for i, tab := range v.Tabs { | ||||
| 		charIndex += len(tab + " - ") | ||||
| 		if x < charIndex { | ||||
| 		charX += runewidth.StringWidth(tab) | ||||
| 		if x <= charX { | ||||
| 			return i | ||||
| 		} | ||||
| 		charX += runewidth.StringWidth(" - ") | ||||
| 		if x <= charX { | ||||
| 			return -1 | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	return 0 | ||||
| 	return -1 | ||||
| } | ||||
|  | ||||
| func (v *View) SelectedLineIdx() int { | ||||
|   | ||||
							
								
								
									
										2
									
								
								vendor/modules.txt
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/modules.txt
									
									
									
									
										vendored
									
									
								
							| @@ -172,7 +172,7 @@ github.com/jesseduffield/go-git/v5/utils/merkletrie/filesystem | ||||
| github.com/jesseduffield/go-git/v5/utils/merkletrie/index | ||||
| github.com/jesseduffield/go-git/v5/utils/merkletrie/internal/frame | ||||
| github.com/jesseduffield/go-git/v5/utils/merkletrie/noder | ||||
| # github.com/jesseduffield/gocui v0.3.1-0.20220417002912-bce22fd599f6 | ||||
| # github.com/jesseduffield/gocui v0.3.1-0.20220723050330-1f853fadb335 | ||||
| ## explicit; go 1.12 | ||||
| github.com/jesseduffield/gocui | ||||
| # github.com/jesseduffield/kill v0.0.0-20220618033138-bfbe04675d10 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user