mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-08 12:56:08 -05:00
Git - remove codicon from git blame status bar item template setting (#235211)
This commit is contained in:
@@ -3229,7 +3229,7 @@
|
||||
},
|
||||
"git.blame.statusBarItem.template": {
|
||||
"type": "string",
|
||||
"default": "$(git-commit) ${authorName} (${authorDateAgo})",
|
||||
"default": "${authorName} (${authorDateAgo})",
|
||||
"markdownDescription": "%config.blameStatusBarItem.template%",
|
||||
"scope": "resource",
|
||||
"tags": [
|
||||
|
||||
@@ -574,7 +574,7 @@ class GitBlameStatusBarItem {
|
||||
this._statusBarItem.tooltip = this._controller.getBlameInformationHover(textEditor.document.uri, blameInformation[0].blameInformation);
|
||||
this._statusBarItem.command = undefined;
|
||||
} else {
|
||||
this._statusBarItem.text = this._controller.formatBlameInformationMessage(template, blameInformation[0].blameInformation);
|
||||
this._statusBarItem.text = `$(git-commit) ${this._controller.formatBlameInformationMessage(template, blameInformation[0].blameInformation)}`;
|
||||
this._statusBarItem.tooltip = this._controller.getBlameInformationHover(textEditor.document.uri, blameInformation[0].blameInformation);
|
||||
this._statusBarItem.command = {
|
||||
title: l10n.t('View Commit'),
|
||||
|
||||
Reference in New Issue
Block a user