mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 10:58:34 -05:00
Fixes statusbar tooltips
This commit is contained in:
@@ -210,19 +210,19 @@ export default class BlameActiveLineController extends Disposable {
|
|||||||
this._statusBarItem.tooltip = 'Toggle Blame Annotations';
|
this._statusBarItem.tooltip = 'Toggle Blame Annotations';
|
||||||
break;
|
break;
|
||||||
case StatusBarCommand.ShowBlameHistory:
|
case StatusBarCommand.ShowBlameHistory:
|
||||||
this._statusBarItem.tooltip = 'Open Blame History';
|
this._statusBarItem.tooltip = 'Open Blame History Explorer';
|
||||||
break;
|
break;
|
||||||
case StatusBarCommand.ShowFileHistory:
|
case StatusBarCommand.ShowFileHistory:
|
||||||
this._statusBarItem.tooltip = 'Open File History';
|
this._statusBarItem.tooltip = 'Open File History Explorer';
|
||||||
break;
|
break;
|
||||||
case StatusBarCommand.DiffWithPrevious:
|
case StatusBarCommand.DiffWithPrevious:
|
||||||
this._statusBarItem.tooltip = 'Compare to Previous Commit';
|
this._statusBarItem.tooltip = 'Compare with Previous Commit';
|
||||||
break;
|
break;
|
||||||
case StatusBarCommand.ToggleCodeLens:
|
case StatusBarCommand.ToggleCodeLens:
|
||||||
this._statusBarItem.tooltip = 'Toggle Blame CodeLens';
|
this._statusBarItem.tooltip = 'Toggle Git CodeLens';
|
||||||
break;
|
break;
|
||||||
case StatusBarCommand.ShowQuickFileHistory:
|
case StatusBarCommand.ShowQuickFileHistory:
|
||||||
this._statusBarItem.tooltip = 'View Git File History';
|
this._statusBarItem.tooltip = 'Show File History';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user