mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 10:03:15 -05:00
Splits showQuickCommitDetails into showQuickCommitDetails and showQuickCommitFileDetails Adds closeUnchangedFiles command Adds openChangedFiles command Adds diffDirectory command Adds contextual description to the `go back` commands Fixes #44 by adding a warning message about Git version requirements Fixes intermittent errors when adding active line annotations Fixes intermittent errors when opening multiple files via quick picks Updates dependencies Preps v2.11.0
756 lines
34 KiB
JSON
756 lines
34 KiB
JSON
{
|
|
"name": "gitlens",
|
|
"version": "2.11.0",
|
|
"author": {
|
|
"name": "Eric Amodio",
|
|
"email": "eamodio@gmail.com"
|
|
},
|
|
"publisher": "eamodio",
|
|
"engines": {
|
|
"vscode": "^1.9.0"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"displayName": "GitLens",
|
|
"description": "Provides Git CodeLens information (most recent commit, # of authors), on-demand inline blame annotations, status bar blame information, file & blame history explorers, and commands to compare changes",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"keywords": [
|
|
"git",
|
|
"blame",
|
|
"history",
|
|
"codelens",
|
|
"annotation"
|
|
],
|
|
"galleryBanner": {
|
|
"color": "#56098c",
|
|
"theme": "dark"
|
|
},
|
|
"icon": "images/gitlens-icon.svg",
|
|
"preview": false,
|
|
"homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/eamodio/vscode-gitlens/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/eamodio/vscode-gitlens.git"
|
|
},
|
|
"main": "./out/src/extension",
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "GitLens configuration",
|
|
"properties": {
|
|
"gitlens.blame.annotation.style": {
|
|
"type": "string",
|
|
"default": "expanded",
|
|
"enum": [
|
|
"compact",
|
|
"expanded",
|
|
"trailing"
|
|
],
|
|
"description": "Specifies the style of the blame annotations. `compact` - groups annotations to limit the repetition and also adds author and date when possible. `expanded` - shows an annotation before every line. `trailing` - shows an annotation after every line"
|
|
},
|
|
"gitlens.blame.annotation.highlight": {
|
|
"type": "string",
|
|
"default": "both",
|
|
"enum": [
|
|
"none",
|
|
"gutter",
|
|
"line",
|
|
"both"
|
|
],
|
|
"description": "Specifies whether and how to highlight blame annotations. `none` - no highlight. `gutter` - adds a gutter icon. `line` - adds a full-line highlight. `both` - adds both `gutter` and `line` highlights"
|
|
},
|
|
"gitlens.blame.annotation.sha": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether the commit sha will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
|
|
},
|
|
"gitlens.blame.annotation.author": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether the committer will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
|
|
},
|
|
"gitlens.blame.annotation.date": {
|
|
"type": "string",
|
|
"default": "off",
|
|
"enum": [
|
|
"off",
|
|
"relative",
|
|
"absolute"
|
|
],
|
|
"description": "Specifies whether and how the commit date will be shown in the blame annotations. `off` - no date. `relative` - relative date (e.g. 1 day ago). `absolute` - date format specified by `gitlens.blame.annotation.dateFormat`. Applies only to the `expanded` & `trailing` annotation styles"
|
|
},
|
|
"gitlens.blame.annotation.dateFormat": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Specifies the date format of how absolute dates will be shown in the blame annotations. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
|
|
},
|
|
"gitlens.blame.annotation.message": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Specifies whether the commit message will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
|
|
},
|
|
"gitlens.blame.annotation.activeLine": {
|
|
"type": "string",
|
|
"default": "both",
|
|
"enum": [
|
|
"off",
|
|
"inline",
|
|
"hover",
|
|
"both"
|
|
],
|
|
"description": "Specifies whether and how to show blame annotations on the active line. `off` - no annotation. `inline` - adds a trailing annotation to the active line. `hover` - adds hover annotation to the active line. `both` - adds both `inline` and `hover` annotations"
|
|
},
|
|
"gitlens.blame.annotation.characters.ellipse": {
|
|
"type": "string",
|
|
"default": "\u2026",
|
|
"description": "Specifies the ellipse character to use in blame annotations"
|
|
},
|
|
"gitlens.blame.annotation.characters.indent": {
|
|
"type": "string",
|
|
"default": "\u2759",
|
|
"description": "Specifies the indent character to use in `compact` blame annotations"
|
|
},
|
|
"gitlens.blame.annotation.characters.padding": {
|
|
"type": "string",
|
|
"default": "\u00a0",
|
|
"description": "Specifies the padding character (typically a non-breaking space) to use in blame annotations"
|
|
},
|
|
"gitlens.blame.annotation.characters.separator": {
|
|
"type": "string",
|
|
"default": "\u2022",
|
|
"description": "Specifies the separator character to use in blame annotations"
|
|
},
|
|
"gitlens.codeLens.visibility": {
|
|
"type": "string",
|
|
"default": "auto",
|
|
"enum": [
|
|
"auto",
|
|
"ondemand",
|
|
"off"
|
|
],
|
|
"description": "Specifies when CodeLens will be triggered in the active document. `auto` - automatically. `ondemand` - only when requested. `off` - disables all active document CodeLens"
|
|
},
|
|
"gitlens.codeLens.location": {
|
|
"type": "string",
|
|
"default": "document+containers",
|
|
"enum": [
|
|
"all",
|
|
"document+containers",
|
|
"document",
|
|
"custom"
|
|
],
|
|
"description": "Specifies where CodeLens will be rendered in the active document. `all` - render at the top of the document, on container-like (classes, modules, etc), and on member-like (methods, functions, properties, etc) lines. `document+containers` - render at the top of the document and on container-like lines. `document` - only render at the top of the document. `custom` - rendering controlled by `gitlens.codeLens.locationCustomSymbols`"
|
|
},
|
|
"gitlens.codeLens.locationCustomSymbols": {
|
|
"type": "array",
|
|
"description": "Specifies the set of document symbols to render active document CodeLens on. Must be a member of `SymbolKind`"
|
|
},
|
|
"gitlens.codeLens.languageLocations": {
|
|
"type": "array",
|
|
"default": [
|
|
{
|
|
"language": "json",
|
|
"location": "document"
|
|
},
|
|
{
|
|
"language": "css",
|
|
"location": "document"
|
|
},
|
|
{
|
|
"language": "scss",
|
|
"location": "document"
|
|
},
|
|
{
|
|
"language": "less",
|
|
"location": "document"
|
|
}
|
|
],
|
|
"items": {
|
|
"type": "object",
|
|
"required": [
|
|
"language",
|
|
"location"
|
|
],
|
|
"properties": {
|
|
"language": {
|
|
"type": "string",
|
|
"description": "Specifies the language to which this CodeLens override applies"
|
|
},
|
|
"location": {
|
|
"type": "string",
|
|
"default": "document+containers",
|
|
"enum": [
|
|
"all",
|
|
"document+containers",
|
|
"document",
|
|
"custom",
|
|
"none"
|
|
],
|
|
"description": "Specifies where CodeLens will be rendered in the active document for the specified language. `all` - render at the top of the document, on container-like (classes, modules, etc), and on member-like (methods, functions, properties, etc) lines. `document+containers` - render at the top of the document and on container-like lines. `document` - only render at the top of the document. `custom` - rendering controlled by `customSymbols`"
|
|
},
|
|
"customSymbols": {
|
|
"type": "string",
|
|
"description": "Specifies the set of document symbols to render active document CodeLens on. Must be a member of `SymbolKind`"
|
|
}
|
|
}
|
|
},
|
|
"uniqueItems": true,
|
|
"enum": [
|
|
"all",
|
|
"document+containers",
|
|
"document",
|
|
"custom"
|
|
],
|
|
"description": "Specifies where CodeLens will be rendered in the active document for the specified languages"
|
|
},
|
|
"gitlens.codeLens.recentChange.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether the recent change CodeLens is shown"
|
|
},
|
|
"gitlens.codeLens.recentChange.command": {
|
|
"type": "string",
|
|
"default": "gitlens.showQuickCommitFileDetails",
|
|
"enum": [
|
|
"gitlens.toggleBlame",
|
|
"gitlens.showBlameHistory",
|
|
"gitlens.showFileHistory",
|
|
"gitlens.diffWithPrevious",
|
|
"gitlens.showQuickCommitDetails",
|
|
"gitlens.showQuickCommitFileDetails",
|
|
"gitlens.showQuickFileHistory",
|
|
"gitlens.showQuickRepoHistory"
|
|
],
|
|
"description": "Specifies the command executed when the recent change CodeLens 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 checked-in file with the previous commit. `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.showQuickFileHistory` - shows a repository history quick pick"
|
|
},
|
|
"gitlens.codeLens.authors.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether the authors CodeLens is shown"
|
|
},
|
|
"gitlens.codeLens.authors.command": {
|
|
"type": "string",
|
|
"default": "gitlens.toggleBlame",
|
|
"enum": [
|
|
"gitlens.toggleBlame",
|
|
"gitlens.showBlameHistory",
|
|
"gitlens.showFileHistory",
|
|
"gitlens.diffWithPrevious",
|
|
"gitlens.showQuickCommitDetails",
|
|
"gitlens.showQuickCommitFileDetails",
|
|
"gitlens.showQuickFileHistory",
|
|
"gitlens.showQuickRepoHistory"
|
|
],
|
|
"description": "Specifies the command executed when the authors CodeLens 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 checked-in file with the previous commit. `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.showQuickFileHistory` - shows a repository history quick pick"
|
|
},
|
|
"gitlens.menus.diff.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether diff commands will be added to the context menus"
|
|
},
|
|
"gitlens.statusBar.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether blame information is shown in the status bar"
|
|
},
|
|
"gitlens.statusBar.command": {
|
|
"type": "string",
|
|
"default": "gitlens.showQuickCommitDetails",
|
|
"enum": [
|
|
"gitlens.toggleBlame",
|
|
"gitlens.showBlameHistory",
|
|
"gitlens.showFileHistory",
|
|
"gitlens.diffWithPrevious",
|
|
"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 checked-in file with the previous commit. `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.showQuickFileHistory` - shows a repository history quick pick"
|
|
},
|
|
"gitlens.statusBar.date": {
|
|
"type": "string",
|
|
"default": "relative",
|
|
"enum": [
|
|
"off",
|
|
"relative",
|
|
"absolute"
|
|
],
|
|
"description": "Specifies whether and how the commit date will be shown in the blame status bar. `off` - no date. `relative` - relative date (e.g. 1 day ago). `absolute` - date format specified by `gitlens.statusBar.dateFormat`"
|
|
},
|
|
"gitlens.statusBar.dateFormat": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Specifies the date format of how absolute dates will be shown in the blame status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
|
|
},
|
|
"gitlens.advanced.caching.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether git blame output will be cached"
|
|
},
|
|
"gitlens.advanced.caching.statusBar.maxLines": {
|
|
"type": "number",
|
|
"default": 0,
|
|
"description": "Specifies whether status bar git blame output will be cached for larger documents"
|
|
},
|
|
"gitlens.advanced.debug": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Specifies debug mode"
|
|
},
|
|
"gitlens.advanced.git": {
|
|
"type": "string",
|
|
"default": null,
|
|
"description": "Specifies a git path to use"
|
|
},
|
|
"gitlens.advanced.gitignore.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
|
|
},
|
|
"gitlens.advanced.maxQuickHistory": {
|
|
"type": "number",
|
|
"default": 200,
|
|
"description": "Specifies the maximum number of QuickPick history entries to show"
|
|
},
|
|
"gitlens.advanced.output.level": {
|
|
"type": "string",
|
|
"default": "silent",
|
|
"enum": [
|
|
"silent",
|
|
"errors",
|
|
"verbose"
|
|
],
|
|
"description": "Specifies how much (if any) output will be sent to the GitLens output channel"
|
|
},
|
|
"gitlens.advanced.quickPick.closeOnFocusOut": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Specifies whether or not to close the QuickPick menu when focus is lost"
|
|
},
|
|
"gitlens.advanced.toggleWhitespace.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "gitlens.key.left",
|
|
"title": "Left KeyPress",
|
|
"category": "GitLens:KeyPress"
|
|
},
|
|
{
|
|
"command": "gitlens.key.right",
|
|
"title": "Right KeyPress",
|
|
"category": "GitLens:KeyPress"
|
|
},
|
|
{
|
|
"command": "gitlens.diffDirectory",
|
|
"title": "Directory Compare",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"title": "Compare with Previous Commit",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithPrevious",
|
|
"title": "Compare Line with Previous Commit",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"title": "Compare with Working Tree",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithWorking",
|
|
"title": "Compare Line with Working Tree",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showBlame",
|
|
"title": "Show Blame Annotations",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"title": "Toggle Blame Annotations",
|
|
"category": "GitLens",
|
|
"icon": {
|
|
"dark": "images/git-icon-dark.svg",
|
|
"light": "images/git-icon-light.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "gitlens.toggleCodeLens",
|
|
"title": "Toggle Git CodeLens",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showBlameHistory",
|
|
"title": "Open Blame History Explorer",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showFileHistory",
|
|
"title": "Open File History Explorer",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitDetails",
|
|
"title": "Show Commit Details",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitFileDetails",
|
|
"title": "Show Line Commit Details",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"title": "Show File History",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoHistory",
|
|
"title": "Show Repository History",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoStatus",
|
|
"title": "Show Repository Status",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.copyShaToClipboard",
|
|
"title": "Copy Commit Sha to Clipboard",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.copyMessageToClipboard",
|
|
"title": "Copy Commit Message to Clipboard",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.closeUnchangedFiles",
|
|
"title": "Close Unchanged Files",
|
|
"category": "GitLens"
|
|
},
|
|
{
|
|
"command": "gitlens.openChangedFiles",
|
|
"title": "Open Changed Files",
|
|
"category": "GitLens"
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "gitlens.key.left",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "gitlens.key.right",
|
|
"when": "false"
|
|
},
|
|
{
|
|
"command": "gitlens.diffDirectory",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithPrevious",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithWorking",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.showBlame",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleCodeLens",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showBlameHistory",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.showFileHistory",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitDetails",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitFileDetails",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoHistory",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoStatus",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.copyShaToClipboard",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.copyMessageToClipboard",
|
|
"when": "gitlens:enabled && gitlens:isBlameable"
|
|
},
|
|
{
|
|
"command": "gitlens.closeUnchangedFiles",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.openChangedFiles",
|
|
"when": "gitlens:enabled"
|
|
}
|
|
],
|
|
"explorer/context": [
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"when": "gitlens:enabled",
|
|
"group": "gitlens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "gitlens_diff"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "gitlens_diff"
|
|
}
|
|
],
|
|
"editor/title": [
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"when": "gitlens:enabled && gitlens:isBlameable",
|
|
"group": "navigation@100"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"when": "editorFocus && gitlens:enabled",
|
|
"group": "gitlens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoHistory",
|
|
"when": "!editorFocus && gitlens:enabled",
|
|
"group": "gitlens"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoStatus",
|
|
"when": "gitlens:enabled",
|
|
"group": "gitlens"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "gitlens_diff"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "gitlens_diff"
|
|
}
|
|
],
|
|
"editor/title/context": [
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"when": "gitlens:enabled && gitlens:isBlameable",
|
|
"group": "gitlens@1"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"when": "gitlens:enabled",
|
|
"group": "gitlens@2"
|
|
}
|
|
],
|
|
"editor/context": [
|
|
{
|
|
"command": "gitlens.diffLineWithPrevious",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
|
|
"group": "1_gitlens@1"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithWorking",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
|
|
"group": "1_gitlens@2"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitFileDetails",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
|
|
"group": "1_gitlens@3"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "1_gitlens-file@1"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
|
|
"group": "1_gitlens-file@2"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
|
|
"group": "2_gitlens@1"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"alt": "gitlens.showFileHistory",
|
|
"when": "gitlens:enabled",
|
|
"group": "2_gitlens@2"
|
|
},
|
|
{
|
|
"command": "gitlens.copyShaToClipboard",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
|
|
"group": "9_gitlens@1"
|
|
},
|
|
{
|
|
"command": "gitlens.copyMessageToClipboard",
|
|
"when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
|
|
"group": "9_gitlens@2"
|
|
}
|
|
]
|
|
},
|
|
"keybindings": [
|
|
{
|
|
"command": "gitlens.key.left",
|
|
"key": "alt+left",
|
|
"when": "gitlens:key"
|
|
},
|
|
{
|
|
"command": "gitlens.key.right",
|
|
"key": "alt+right",
|
|
"when": "gitlens:key"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleBlame",
|
|
"key": "alt+b",
|
|
"mac": "alt+b",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.toggleCodeLens",
|
|
"key": "alt+shift+b",
|
|
"mac": "alt+shift+b",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickFileHistory",
|
|
"key": "alt+h",
|
|
"mac": "alt+h",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoHistory",
|
|
"key": "shift+alt+h",
|
|
"mac": "shift+alt+h",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickRepoStatus",
|
|
"key": "alt+s",
|
|
"mac": "alt+s",
|
|
"when": "gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.showQuickCommitFileDetails",
|
|
"key": "alt+c",
|
|
"mac": "alt+c",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithPrevious",
|
|
"key": "alt+p",
|
|
"mac": "alt+p",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithPrevious",
|
|
"key": "shift+alt+p",
|
|
"mac": "shift+alt+p",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffLineWithWorking",
|
|
"key": "alt+w",
|
|
"mac": "alt+w",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
},
|
|
{
|
|
"command": "gitlens.diffWithWorking",
|
|
"key": "shift+alt+w",
|
|
"mac": "shift+alt+w",
|
|
"when": "editorTextFocus && gitlens:enabled"
|
|
}
|
|
]
|
|
},
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"scripts": {
|
|
"compile": "tsc -watch -p ./",
|
|
"lint": "tslint --project tslint.json",
|
|
"pack": "git clean -xdf && npm install && vsce package",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"pub": "git clean -xdf --exclude=node_modules/ && npm install && vsce publish",
|
|
"vscode:prepublish": "tsc -p ./"
|
|
},
|
|
"dependencies": {
|
|
"copy-paste": "^1.3.0",
|
|
"ignore": "^3.2.4",
|
|
"lodash.debounce": "^4.0.8",
|
|
"lodash.escaperegexp": "^4.1.2",
|
|
"lodash.isequal": "^4.5.0",
|
|
"lodash.once": "^4.1.1",
|
|
"moment": "^2.17.1",
|
|
"spawn-rx": "^2.0.10",
|
|
"tmp": "^0.0.31"
|
|
},
|
|
"devDependencies": {
|
|
"@types/copy-paste": "^1.1.30",
|
|
"@types/mocha": "^2.2.39",
|
|
"@types/node": "^7.0.7",
|
|
"@types/tmp": "^0.0.32",
|
|
"mocha": "^3.2.0",
|
|
"tslint": "^4.5.1",
|
|
"typescript": "^2.2.1",
|
|
"vscode": "^1.0.5"
|
|
}
|
|
} |