Browse Source

Changes the default cmd of recent change codelens

main
Eric Amodio 8 years ago
parent
commit
1a47935719
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      CHANGELOG.md
  2. +1
    -1
      package.json

+ 2
- 0
CHANGELOG.md View File

@ -12,12 +12,14 @@
- Adds icons for some commands
- Adds `gitlens.diffWithPrevious` command to the editor content menu
- Adds `gitlens.diffWithWorking` command to the editor content menu
- Changes the default command of `gitlens.codeLens.recentChange.command` to `gitlens.showQuickFileHistory`
- Changes behavior of `gitlens.showQuickFileHistory` when executed via CodeLens to open commit details directly
- Changes `gitlens.diffWithPrevious` command to behave as `gitlens.diffWithWorking` if the file has uncommitted changes
- Renames `gitlens.diffWithPrevious` command from `Diff Commit with Previous` to `Compare with Previous Commit`
- Renames `gitlens.diffLineWithPrevious` command from `Diff Commit (line) with Previous` to `Compare Line with Previous Commit`
- Renames `gitlens.diffWithWorking` command from `Diff Commit with Working Tree` to `Compare with Working Tree`
- Renames `gitlens.diffLineWithWorking` command from `Diff Commit (line) with Working Tree` to `Compare Line with Working Tree`
- Fixes issues with certain git commands not working on Windows
- Fixes [#31](https://github.com/eamodio/vscode-gitlens/issues/31) - Disable gitlens if the project does not have `.git` folder
- Fixes issue where quickpick lists could fail if there was no active editor
- Fixes CodeLens not updating in response to configuration changes

+ 1
- 1
package.json View File

@ -209,7 +209,7 @@
},
"gitlens.codeLens.recentChange.command": {
"type": "string",
"default": "gitlens.showFileHistory",
"default": "gitlens.showQuickFileHistory",
"enum": [
"gitlens.toggleBlame",
"gitlens.showBlameHistory",

Loading…
Cancel
Save