Git - experimental git blame editor decoration (#234209)

* Initial implementation

* Add setting, and cache blame information more aggressively
This commit is contained in:
Ladislau Szomoru
2024-11-19 22:05:19 +01:00
committed by GitHub
parent e7ee6c08df
commit 80635b487b
8 changed files with 531 additions and 4 deletions

View File

@@ -3188,6 +3188,12 @@
"maximum": 100,
"markdownDescription": "%config.similarityThreshold%",
"scope": "resource"
},
"git.blame.editorDecoration.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "%config.blameEditorDecoration.enabled%",
"scope": "resource"
}
}
},
@@ -3291,6 +3297,16 @@
"highContrast": "#8db9e2",
"highContrastLight": "#1258a7"
}
},
{
"id": "git.blame.editorDecorationForeground",
"description": "%colors.blameEditorDecoration%",
"defaults": {
"dark": "editorCodeLens.foreground",
"light": "editorCodeLens.foreground",
"highContrast": "editorCodeLens.foreground",
"highContrastLight": "editorCodeLens.foreground"
}
}
],
"configurationDefaults": {