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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
11
11
- Adds a new `counts` option to the `gitlens.launchpad.indicator.label` setting to show the status counts of items which need your attention in the _Launchpad_ status bar indicator
12
12
- Adds _Search for Commits within Selection_ command to the editor context menu when there is a selection
13
13
- Adds a `gitlens.launchpad.ignoredOrganizations` setting to specify an array of organizations (or users) to ignore in the _Launchpad_
14
+
- Improves the tooltips of stashes in GitLens views
15
+
- Adds a `gitlens.views.formats.stashes.tooltip` setting to specify the tooltip format of the stashes in GitLens views
16
+
- Improves the display of branch and tag tips in the _File History_ and _Line History_ and in commit tooltips in GitLens views
17
+
- Adds provider-specific icons to tips of remote branches
Copy file name to clipboardExpand all lines: package.json
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -650,7 +650,7 @@
650
650
},
651
651
"gitlens.views.formats.commits.tooltip": {
652
652
"type": "string",
653
-
"default": "${link}${' via 'pullRequest}${' • 'changesDetail}${' 'tips}\n\n${avatar} __${author}__, ${ago} _(${date})_ \n\n${message}${\n\n---\n\nfootnotes}",
653
+
"default": "${link}${' • 'changesDetail}${' 'tips} \\\n${avatar} __${author}__, ${ago}${' via 'pullRequest} _(${date})_ \n\n${message}${\n\n---\n\nfootnotes}",
654
654
"markdownDescription": "Specifies the tooltip format (in markdown) of commits in the views. See [_Commit Tokens_](https://github.com/eamodio/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs",
655
655
"scope": "window",
656
656
"order": 32
@@ -690,6 +690,13 @@
690
690
"scope": "window",
691
691
"order": 51
692
692
},
693
+
"gitlens.views.formats.stashes.tooltip": {
694
+
"type": "string",
695
+
"default": "${link}${' on `'stashOnRef`}${' • 'changesDetail} \\\n ${ago} _(${date})_ \n\n${message}${\n\n---\n\nfootnotes}",
696
+
"markdownDescription": "Specifies the tooltip format (in markdown) of stashes in the views. See [_Commit Tokens_](https://github.com/eamodio/vscode-gitlens/wiki/Custom-Formatting#commit-tokens) in the GitLens docs",
0 commit comments