mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 12:25:47 +02:00
Support range select for staging/discarding files
As part of this, you must now press enter on a merge conflict file to focus the merge view; you can no longer press space and if you do it will raise an error.
This commit is contained in:
parent
798225d9e1
commit
269ef7f250
29 changed files with 1232 additions and 756 deletions
|
@ -41,6 +41,10 @@ func (self *Node[T]) IsFile() bool {
|
|||
return self.File != nil
|
||||
}
|
||||
|
||||
func (self *Node[T]) GetFile() *T {
|
||||
return self.File
|
||||
}
|
||||
|
||||
func (self *Node[T]) GetPath() string {
|
||||
return self.Path
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue