Fixes some issues with uncommited blames

Automatically turns off blame only when required now
This commit is contained in:
Eric Amodio
2016-09-07 15:45:07 -04:00
parent 26ce5f7d53
commit 19c0e46729
6 changed files with 92 additions and 30 deletions

View File

@@ -13,13 +13,16 @@
"Other"
],
"keywords": [
"git", "gitblame", "blame", "codelens"
"git", "blame", "history", "log", "codelens"
],
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"preview": true,
"bugs": {
"url": "https://github.com/eamodio/vscode-gitlens/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eamodio/vscode-gitlens.git"
@@ -28,22 +31,22 @@
"contributes": {
"commands": [{
"command": "gitlens.diffWithPrevious",
"title": "GitLens: Open Diff with Previous Commit",
"title": "Git: Open Diff with Previous Commit",
"category": "GitLens"
},
{
"command": "gitlens.diffWithWorking",
"title": "GitLens: Open Diff with Working Tree",
"title": "Git: Open Diff with Working Tree",
"category": "GitLens"
},
{
"command": "gitlens.showBlame",
"title": "GitLens: Show Git Blame",
"title": "Git: Show Blame",
"category": "GitLens"
},
{
"command": "gitlens.toggleBlame",
"title": "GitLens: Toggle Git Blame",
"title": "Git: Toggle Blame",
"category": "GitLens"
}],
"menus": {