summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-08-07 08:16:42 +0200
committerGitHub <noreply@github.com>2023-08-07 08:16:42 +0200
commitd1754a94908dbd73e6ecb9ba04f1c97836a10ef6 (patch)
treec93228f33f7b1c2dfa2350d4d92cb5439a053871
parent33a96a3dd739669832ee877b4923920791b5a993 (diff)
parent77447ea6c37d846e5b0e0df417fa5a2a50cabc96 (diff)
update worktree icons for NerdFont V3 (#2895)keybinding-menu-headings
-rw-r--r--pkg/gui/presentation/icons/git_icons.go14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkg/gui/presentation/icons/git_icons.go b/pkg/gui/presentation/icons/git_icons.go
index 17877c67e..5a7c0afc6 100644
--- a/pkg/gui/presentation/icons/git_icons.go
+++ b/pkg/gui/presentation/icons/git_icons.go
@@ -14,8 +14,8 @@ var (
MERGE_COMMIT_ICON = "\U000f062d" // 󰘭
DEFAULT_REMOTE_ICON = "\uf02a2" // 󰊢
STASH_ICON = "\uf01c" // 
- LINKED_WORKTREE_ICON = "\uf838" // 
- MISSING_LINKED_WORKTREE_ICON = "\uf839" // 
+ LINKED_WORKTREE_ICON = "\U000f0339" // 󰌹
+ MISSING_LINKED_WORKTREE_ICON = "\U000f033a" // 󰌺
)
var remoteIcons = map[string]string{
@@ -26,10 +26,12 @@ var remoteIcons = map[string]string{
}
func patchGitIconsForNerdFontsV2() {
- BRANCH_ICON = "\ufb2b" // שׂ
- COMMIT_ICON = "\ufc16" // ﰖ
- MERGE_COMMIT_ICON = "\ufb2c" // שּׁ
- DEFAULT_REMOTE_ICON = "\uf7a1" // 
+ BRANCH_ICON = "\ufb2b" // שׂ
+ COMMIT_ICON = "\ufc16" // ﰖ
+ MERGE_COMMIT_ICON = "\ufb2c" // שּׁ
+ DEFAULT_REMOTE_ICON = "\uf7a1" // 
+ LINKED_WORKTREE_ICON = "\uf838" // 
+ MISSING_LINKED_WORKTREE_ICON = "\uf839" // 
remoteIcons["dev.azure.com"] = "\ufd03" // ﴃ
}