Skip to content

Commit db45dfe

Browse files
committed
Changes to use a target as HEAD indicator
- Aligns with VS Code
1 parent c677510 commit db45dfe

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/constants.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ export const enum GlyphChars {
7777
ArrowsLeftRight = '\u21c6',
7878
ArrowsRightLeft = '\u21c4',
7979
Asterisk = '\u2217',
80-
Check = '✔',
80+
Bullseye = '\u25CE',
81+
Check = '\u2714',
8182
Dash = '\u2014',
8283
Dot = '\u2022',
8384
Ellipsis = '\u2026',

src/views/viewDecorationProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function getBranchDecoration(uri: Uri, _token: CancellationToken): FileDecoratio
124124
if (state?.current) {
125125
return {
126126
...decoration,
127-
badge: GlyphChars.Check,
127+
badge: GlyphChars.Bullseye,
128128
tooltip: 'Current',
129129
};
130130
}

0 commit comments

Comments
 (0)