diff --git a/README.md b/README.md index dacf78b..6ad3ddf 100644 --- a/README.md +++ b/README.md @@ -646,7 +646,7 @@ See also [Explorer Settings](#explorer-settings "Jump to the Explorer settings") |`gitlens.statusBar.dateFormat`|Specifies the date format of absolute dates shown in the blame information on the status bar
See https://momentjs.com/docs/#/displaying/format/ for valid formats |`gitlens.statusBar.enabled`|Specifies whether to provide blame information on the status bar |`gitlens.statusBar.format`|Specifies the format of the blame information on the status bar
Available tokens
`${id}` - commit id
`${author}` - commit author
`${message}` - commit message
`${ago}` - relative commit date (e.g. 1 day ago)
`${date}` - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)
`${agoOrDate}` - commit date specified by `gitlens.defaultDateStyle`
`${authorAgo}` - commit author, relative commit date
`${authorAgoOrDate}` - commit author, commit date specified by `gitlens.defaultDateStyle`
See https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting -|`gitlens.statusBar.reduceFlicker`|Specifies whether to reduce the status bar "flickering" when changing lines by not first clearing the previous blame information +|`gitlens.statusBar.reduceFlicker`|Specifies whether to avoid clearing the previous blame information when changing lines to reduce status bar "flashing" ### Advanced Settings diff --git a/package.json b/package.json index 5e8e5d5..daf5446 100644 --- a/package.json +++ b/package.json @@ -776,7 +776,7 @@ "gitlens.statusBar.reduceFlicker": { "type": "boolean", "default": false, - "description": "Specifies whether to reduce the status bar \"flickering\" when changing lines by not first clearing the previous blame information", + "description": "Specifies whether to avoid clearing the previous blame information when changing lines to reduce status bar \"flashing\"", "scope": "window" }, "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": { diff --git a/src/ui/images/settings/current-line-blame-on-scrollable.png b/src/ui/images/settings/current-line-blame-on-scrollable.png new file mode 100644 index 0000000..43f7504 Binary files /dev/null and b/src/ui/images/settings/current-line-blame-on-scrollable.png differ diff --git a/src/ui/settings/index.html b/src/ui/settings/index.html index c54192a..73f85d3 100644 --- a/src/ui/settings/index.html +++ b/src/ui/settings/index.html @@ -269,10 +269,16 @@ +
+ + +
+

When enabled the annotation can be scrolled into view when it is outside the viewport

+

@@ -601,6 +607,11 @@ +

+ + +
+

Avoids clearing the previous blame information when changing lines to reduce status bar "flashing"