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
Adds user-defined autolinks to external resources in commit messages — closes #897
Adds a gitlens.autolinks setting to configure the autolinks
For example to autolink Jira issues (e.g. JIRA-123 ⟶ https://jira.company.com/issue?query=123):
Use "gitlens.autolinks": [{ "prefix": "JIRA-", "url": "https://jira.company.com/issue?query=<num>" }]
Adds a Highlight Changes command (gitlens.views.highlightChanges) to commits in GitLens views to highlight the changes lines in the current file
Adds a Highlight Revision Changes command (gitlens.views.highlightRevisionChanges) to commits in GitLens views to highlight the changes lines in the revision
Adds branch and tag sorting options to the interactive settings editor
Changed
Changes commit search to auto-detect full commit shas without the need to prefix it with commit: or #:
Changes paging in GitLens views to no longer be naive and now only loads the additional required data for much better performance
Changes the Toggle File Layout command icon when in tree layout to match VS Code
Restores the original commit icon in the editor toolbar
Fixed
Fixes #893 - Problems with # symbol in branch names — thanks to PR #894 by Allan Karlson (@bees4ever)
Fixes #677 - Line and file history not working in symlinked repository