Skip to content

Commit fc1e9f0

Browse files
committed
Renames unsaved changes defaults for clarity
1 parent 73a183b commit fc1e9f0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1919
### Changed
2020
- Renames `gitlens.theme.annotations.file.gutter.separateLines` setting to `gitlens.annotations.file.gutter.separateLines`
2121
- Changes from using `globalState` to use `gitlens.advanced.messages` setting for message suppression - provides more control and avoids strange intermittent with `globalState`
22+
- Changes `gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors` setting default to `Unsaved changes (cannot determine recent change or authors)`
23+
- Changes `gitlens.strings.codeLens.unsavedChanges.recentChangeOnly` setting default to `Unsaved changes (cannot determine recent change)`
24+
- Changes `gitlens.strings.codeLens.unsavedChanges.authorsOnly` setting default to `Unsaved changes (cannot determine authors)`
2225

2326
### Removed
2427
- Removes `gitlens.theme.*` settings - now using built-in theme support

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,19 +691,19 @@
691691
},
692692
"gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
693693
"type": "string",
694-
"default": "Cannot determine recent change or authors (unsaved changes)",
694+
"default": "Unsaved changes (cannot determine recent change or authors)",
695695
"description": "Specifies the string to be shown in place of both the `recent change` and `authors` code lens when there are unsaved changes",
696696
"scope": "window"
697697
},
698698
"gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
699699
"type": "string",
700-
"default": "Cannot determine recent change (unsaved changes)",
700+
"default": "Unsaved changes (cannot determine recent change)",
701701
"description": "Specifies the string to be shown in place of the `recent change` code lens when there are unsaved changes",
702702
"scope": "window"
703703
},
704704
"gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
705705
"type": "string",
706-
"default": "Cannot determine authors (unsaved changes)",
706+
"default": "Unsaved changes (cannot determine authors)",
707707
"description": "Specifies the string to be shown in place of the `authors` code lens when there are unsaved changes",
708708
"scope": "window"
709709
},

0 commit comments

Comments
 (0)