Adds 'gitlens.diffWithWorking' status bar command option

Changes 'gitlens.diffWithPrevious' status bar command option behavior
This commit is contained in:
Eric Amodio
2017-05-27 04:25:12 -04:00
parent 522e5a49a2
commit 55b1a66ec0
4 changed files with 14 additions and 6 deletions

View File

@@ -308,13 +308,14 @@
"gitlens.showBlameHistory",
"gitlens.showFileHistory",
"gitlens.diffWithPrevious",
"gitlens.diffWithWorking",
"gitlens.toggleCodeLens",
"gitlens.showQuickCommitDetails",
"gitlens.showQuickCommitFileDetails",
"gitlens.showQuickFileHistory",
"gitlens.showQuickRepoHistory"
],
"description": "Specifies the command executed when the blame status bar item is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current committed file with the previous commit. `gitlens.toggleCodeLens` - toggles Git code lens. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
"description": "Specifies the command executed when the blame status bar item is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current line commit with the previous. `gitlens.diffWithWorking` - compares the current line commit with the working tree. `gitlens.toggleCodeLens` - toggles Git code lens. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
},
"gitlens.statusBar.date": {
"type": "string",
@@ -391,7 +392,7 @@
},
{
"command": "gitlens.diffLineWithPrevious",
"title": "Compare Line Commit with Previous",
"title": "Compare Line Commit with Previous",
"category": "GitLens"
},
{
@@ -401,7 +402,7 @@
},
{
"command": "gitlens.diffLineWithWorking",
"title": "Compare Line Commit with Working Tree",
"title": "Compare Line Commit with Working Tree",
"category": "GitLens"
},
{