mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
20 lines
432 B
Go
20 lines
432 B
Go
package presentation
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
func GetSuggestionListDisplayStrings(suggestions []*types.Suggestion) [][]string {
|
|
lines := make([][]string, len(suggestions))
|
|
|
|
for i := range suggestions {
|
|
lines[i] = getSuggestionDisplayStrings(suggestions[i])
|
|
}
|
|
|
|
return lines
|
|
}
|
|
|
|
func getSuggestionDisplayStrings(suggestion *types.Suggestion) []string {
|
|
return []string{suggestion.Label}
|
|
}
|