mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-25 12:24:47 +02:00
Merge pull request #2219 from Ryooooooga/stash-icon
This commit is contained in:
commit
05089b9a9a
@ -13,6 +13,7 @@ const (
|
|||||||
COMMIT_ICON = "\ufc16" // ﰖ
|
COMMIT_ICON = "\ufc16" // ﰖ
|
||||||
MERGE_COMMIT_ICON = "\ufb2c" // שּׁ
|
MERGE_COMMIT_ICON = "\ufb2c" // שּׁ
|
||||||
DEFAULT_REMOTE_ICON = "\uf7a1" //
|
DEFAULT_REMOTE_ICON = "\uf7a1" //
|
||||||
|
STASH_ICON = "\uf01c" //
|
||||||
)
|
)
|
||||||
|
|
||||||
type remoteIcon struct {
|
type remoteIcon struct {
|
||||||
@ -59,3 +60,7 @@ func IconForRemote(remote *models.Remote) string {
|
|||||||
}
|
}
|
||||||
return DEFAULT_REMOTE_ICON
|
return DEFAULT_REMOTE_ICON
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func IconForStash(stash *models.StashEntry) string {
|
||||||
|
return STASH_ICON
|
||||||
|
}
|
||||||
|
@ -3,6 +3,7 @@ package presentation
|
|||||||
import (
|
import (
|
||||||
"github.com/jesseduffield/generics/slices"
|
"github.com/jesseduffield/generics/slices"
|
||||||
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
"github.com/jesseduffield/lazygit/pkg/commands/models"
|
||||||
|
"github.com/jesseduffield/lazygit/pkg/gui/presentation/icons"
|
||||||
"github.com/jesseduffield/lazygit/pkg/theme"
|
"github.com/jesseduffield/lazygit/pkg/theme"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -19,5 +20,11 @@ func getStashEntryDisplayStrings(s *models.StashEntry, diffed bool) []string {
|
|||||||
if diffed {
|
if diffed {
|
||||||
textStyle = theme.DiffTerminalColor
|
textStyle = theme.DiffTerminalColor
|
||||||
}
|
}
|
||||||
return []string{textStyle.Sprint(s.Name)}
|
|
||||||
|
res := make([]string, 0, 2)
|
||||||
|
if icons.IsIconEnabled() {
|
||||||
|
res = append(res, textStyle.Sprint(icons.IconForStash(s)))
|
||||||
|
}
|
||||||
|
res = append(res, textStyle.Sprint(s.Name))
|
||||||
|
return res
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user