Adds setting to control blame annotation highlight

Fixes #24
This commit is contained in:
Eric Amodio
2017-02-13 01:44:54 -05:00
parent 6641233284
commit 310a547581
7 changed files with 103 additions and 42 deletions

View File

@@ -52,6 +52,17 @@
],
"description": "Specifies the style of the blame annotations. `compact` - groups annotations to limit the repetition and also adds author and date when possible. `expanded` - shows an annotation before every line. `trailing` - shows an annotation after every line"
},
"gitlens.blame.annotation.highlight": {
"type": "string",
"default": "both",
"enum": [
"none",
"gutter",
"line",
"both"
],
"description": "Specifies whether and how to highlight blame annotations. `none` - no highlight. `gutter` - adds a gutter icon. `line` - adds a full-line highlight. `both` - adds both `gutter` and `line` highlights"
},
"gitlens.blame.annotation.sha": {
"type": "boolean",
"default": true,