You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8
8
### Added
9
9
- Adds rich tooltip details to most nodes in the **GitLens** explorer and **GitLens Results** view
10
10
- Adds an indicator to the *GitLens* explorer branch history to mark the synchronization point between the local and remote branch (if available)
11
+
- Adds a one-time notification on startup if the `alternate` set of keyboard shortcuts is in use, with options to easily switch to another set
11
12
- Adds `${agoOrDate}` and `${authorAgoOrDate}` tokens to `gitlens.blame.format`, `gitlens.currentLine.format`, `gitlens.explorers.commitFormat`, `gitlens.explorers.stashFormat`, and `gitlens.statusBar.format` settings which will honor the `gitlens.defaultDateStyle` setting — closes [#312](https://github.com/eamodio/vscode-gitlens/issues/312)
12
13
- Adds `gitlens.currentLine.scrollable` setting to specify whether the current line blame annotation can be scrolled into view when it is outside the viewport — closes [#149](https://github.com/eamodio/vscode-gitlens/issues/149), [#290](https://github.com/eamodio/vscode-gitlens/issues/290), [#265](https://github.com/eamodio/vscode-gitlens/issues/265)
13
14
- Adds *Copy Commit ID to Clipboard* (`gitlens.copyShaToClipboard`) command to changed file nodes in the **GitLens** explorer and **GitLens Results** view
if(commit===undefined)returnMessages.showMessage('info',`Commit has no previous commit`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
21
-
returnMessages.showMessage('info',`Commit ${commit.shortSha} (${commit.author}, ${commit.formattedDate}) has no previous commit`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
if(commit===undefined)returnMessages.showMessage('info',`Commit has no previous commit.`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
23
+
returnMessages.showMessage('info',`Commit ${commit.shortSha} (${commit.author}, ${commit.formattedDate}) has no previous commit.`,SuppressedMessages.CommitHasNoPreviousCommitWarning);
`GitLens is using keyboard shortcuts which can conflict with menu mnemonics and different keyboard layouts. To avoid such conflicts, it is recommended to switch to the new default keyboard shortcuts.`,
returnMessages.showMessage('info',`If you can't find your results, click on "GITLENS RESULTS" at the bottom of the Explorer view`,SuppressedMessages.ResultsExplorerNotice,null);
returnMessages.showMessage('info',`If you can't find your results, click on "GITLENS RESULTS" at the bottom of the Explorer view.`,SuppressedMessages.ResultsExplorerNotice,null);
returnMessages.showMessage('error',`GitLens requires a newer version of Git (>= 2.2.0) than is currently installed (${version}). Please install a more recent version of Git`,SuppressedMessages.GitVersionWarning);
returnMessages.showMessage('error',`GitLens requires a newer version of Git (>= 2.2.0) than is currently installed (${version}). Please install a more recent version of Git.`,SuppressedMessages.GitVersionWarning);
46
87
}
47
88
48
-
privatestaticasyncshowMessage(type: 'info'|'warn'|'error',message: string,suppressionKey: SuppressedMessages,dontShowAgain: string|null='Don\'t Show Again', ...actions: any[]): Promise<string|undefined>{
0 commit comments