1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

support some more things

This commit is contained in:
Jesse Duffield
2021-03-15 23:00:20 +11:00
parent 418621a9ff
commit c9de6c003b
5 changed files with 37 additions and 10 deletions

View File

@ -203,3 +203,11 @@ func (s *StatusLineNode) GetPathsMatching(test func(*StatusLineNode) bool) []str
return paths
}
func (s *StatusLineNode) ID() string {
return s.GetPath()
}
func (s *StatusLineNode) Description() string {
return s.GetPath()
}