mirror of
				https://github.com/taigrr/wtf
				synced 2025-01-18 04:03:14 -08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			581 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			581 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package git
 | |
| 
 | |
| import "github.com/gdamore/tcell"
 | |
| 
 | |
| func (widget *Widget) initializeKeyboardControls() {
 | |
| 	widget.InitializeCommonControls(widget.Refresh)
 | |
| 
 | |
| 	widget.SetKeyboardChar("l", widget.NextSource, "Select next source")
 | |
| 	widget.SetKeyboardChar("h", widget.PrevSource, "Select previous source")
 | |
| 	widget.SetKeyboardChar("p", widget.Pull, "Pull repo")
 | |
| 	widget.SetKeyboardChar("c", widget.Checkout, "Checkout branch")
 | |
| 
 | |
| 	widget.SetKeyboardKey(tcell.KeyLeft, widget.PrevSource, "Select previous source")
 | |
| 	widget.SetKeyboardKey(tcell.KeyRight, widget.NextSource, "Select next source")
 | |
| }
 |