From ceb9c5e126d4a97da3658c0fe36d2c3388b47297 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 26 Jun 2017 23:55:09 -0400 Subject: [PATCH] Removes "Line" from some command titles --- README.md | 6 +++--- package.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 84ab4b4..4618df7 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Adds commands to open files, commits, branches, and the repository in the supported remote services, currently **BitBucket, GitHub, GitLab, and Visual Studio Team Services** — only available if a Git upstream service is configured in the repository - `Open Branch in Remote` command (`gitlens.openBranchInRemote`) — opens the current branch commits in the supported remote service - - `Open Line Commit in Remote` command (`gitlens.openCommitInRemote`) — opens the commit revision of the active line in the supported remote service + - `Open Commit in Remote` command (`gitlens.openCommitInRemote`) — opens the commit revision of the active line in the supported remote service - `Open File in Remote` command (`gitlens.openFileInRemote`) — opens the active file/revision in the supported remote service - `Open Repository in Remote` command (`gitlens.openRepoInRemote`) — opens the repository in the supported remote service @@ -147,9 +147,9 @@ GitLens provides an unobtrusive blame annotation at the end of the current line, - Use the `alt+right arrow` shortcut on a file entry in the `Changed Files` section to preview the current revision of the while leaving the quick pick menu open - NOTE: Once [vscode issue #10568](https://github.com/Microsoft/vscode/issues/10568) is resolved this will change to preview the comparison of the current revision with the previous one -- Adds a `Show Line Commit Details` command (`gitlens.showQuickCommitFileDetails`) with a shortcut of `alt+c` to show a **file commit details quick pick menu** of the most recent commit of the active file +- Adds a `Show Commit File Details` command (`gitlens.showQuickCommitFileDetails`) with a shortcut of `alt+c` to show a **file commit details quick pick menu** of the most recent commit of the active file - ![Line Commit Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-file-details.png) + ![Commit File Details Quick Pick Menu](https://raw.githubusercontent.com/eamodio/vscode-gitlens/master/images/screenshot-commit-file-details.png) - Provides entries to `Show Commit Details`, `Show File History`, `Compare File with...`, `Copy to Clipboard`, `Open File`, `Open File in ` when available, and more - Navigate back to the previous quick pick menu via `alt+left arrow`, if available diff --git a/package.json b/package.json index 52702b4..95400a7 100644 --- a/package.json +++ b/package.json @@ -844,7 +844,7 @@ }, { "command": "gitlens.showQuickCommitFileDetails", - "title": "Show Line Commit Details", + "title": "Show Commit File Details", "category": "GitLens" }, { @@ -899,7 +899,7 @@ }, { "command": "gitlens.openCommitInRemote", - "title": "Open Line Commit in Remote", + "title": "Open Commit in Remote", "category": "GitLens" }, {