We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c101761 commit b788c6fCopy full SHA for b788c6f
1 file changed
extensions/git/src/statusbar.ts
@@ -81,13 +81,16 @@ export class SyncStatusBar {
81
text += `${HEAD.behind}↓ ${HEAD.ahead}↑`;
82
}
83
this.raw.command = 'git.sync';
84
+ this.raw.tooltip = 'Synchronize changes';
85
} else {
86
icon = '$(cloud-upload)';
87
this.raw.command = 'git.publish';
88
+ this.raw.tooltip = 'Publish changes';
89
90
91
this.raw.color = 'rgba(255,255,255,0.7)';
92
this.raw.command = '';
93
+ this.raw.tooltip = '';
94
95
96
this.raw.text = [icon, text].join(' ').trim();
0 commit comments