You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1948 lines
90 KiB

7 years ago
  1. {
  2. "name": "gitlens",
  3. "version": "5.2.0",
  4. "author": {
  5. "name": "Eric Amodio",
  6. "email": "eamodio@gmail.com"
  7. },
  8. "publisher": "eamodio",
  9. "engines": {
  10. "vscode": "^1.16.0"
  11. },
  12. "license": "SEE LICENSE IN LICENSE",
  13. "displayName": "Git Lens \u2014 git blame annotations, code lens, and more",
  14. "description": "Supercharge Visual Studio Code's Git capabilities \u2014 Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore the history of a file or branch, gain valuable insights via powerful comparison commands, and so much more",
  15. "badges": [
  16. {
  17. "url": "https://img.shields.io/badge/chat-on%20slack-brightgreen.svg",
  18. "href": "https://join.slack.com/t/vscode-dev-community/shared_invite/enQtMjIxOTgxNDE3NzM0LWU5M2ZiZDU1YjBlMzdlZjA2YjBjYzRhYTM5NTgzMTAxMjdiNWU0ZmQzYWI3MWU5N2Q1YjBiYmQ4MzY0NDE1MzY",
  19. "description": "Chat at https://vscode-dev-community.slack.com/"
  20. }
  21. ],
  22. "categories": [
  23. "Other"
  24. ],
  25. "keywords": [
  26. "git",
  27. "code lens",
  28. "blame",
  29. "history",
  30. "annotation",
  31. "log",
  32. "inline blame",
  33. "compare",
  34. "diff"
  35. ],
  36. "galleryBanner": {
  37. "color": "#56098c",
  38. "theme": "dark"
  39. },
  40. "icon": "images/gitlens-icon.png",
  41. "preview": false,
  42. "homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
  43. "bugs": {
  44. "url": "https://github.com/eamodio/vscode-gitlens/issues"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/eamodio/vscode-gitlens.git"
  49. },
  50. "main": "./out/src/extension",
  51. "contributes": {
  52. "configuration": {
  53. "type": "object",
  54. "title": "GitLens configuration",
  55. "properties": {
  56. "gitlens.debug": {
  57. "type": "boolean",
  58. "default": false,
  59. "description": "Specifies debug mode"
  60. },
  61. "gitlens.insiders": {
  62. "type": "boolean",
  63. "default": false,
  64. "description": "Specifies whether or not to enable new experimental features (expect there to be issues)"
  65. },
  66. "gitlens.outputLevel": {
  67. "type": "string",
  68. "default": "silent",
  69. "enum": [
  70. "silent",
  71. "errors",
  72. "verbose"
  73. ],
  74. "description": "Specifies how much (if any) output will be sent to the GitLens output channel"
  75. },
  76. "gitlens.annotations.file.gutter.format": {
  77. "type": "string",
  78. "default": "${message|40?} ${ago|14-}",
  79. "description": "Specifies the format of the gutter blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.file.gutter.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  80. },
  81. "gitlens.annotations.file.gutter.dateFormat": {
  82. "type": "string",
  83. "default": null,
  84. "description": "Specifies how to format absolute dates (using the `${date}` token) in gutter blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  85. },
  86. "gitlens.annotations.file.gutter.compact": {
  87. "type": "boolean",
  88. "default": true,
  89. "description": "Specifies whether or not to compact (deduplicate) matching adjacent gutter blame annotations"
  90. },
  91. "gitlens.annotations.file.gutter.heatmap.enabled": {
  92. "type": "boolean",
  93. "default": true,
  94. "description": "Specifies whether or not to provide a heatmap indicator in the gutter blame annotations"
  95. },
  96. "gitlens.annotations.file.gutter.heatmap.location": {
  97. "type": "string",
  98. "default": "right",
  99. "enum": [
  100. "left",
  101. "right"
  102. ],
  103. "description": "Specifies where the heatmap indicators will be shown in the gutter blame annotations\n `left` - adds a heatmap indicator on the left edge of the gutter blame annotations\n `right` - adds a heatmap indicator on the right edge of the gutter blame annotations"
  104. },
  105. "gitlens.annotations.file.gutter.hover.details": {
  106. "type": "boolean",
  107. "default": true,
  108. "description": "Specifies whether or not to provide a commit details hover annotation over the gutter blame annotations"
  109. },
  110. "gitlens.annotations.file.gutter.hover.wholeLine": {
  111. "type": "boolean",
  112. "default": false,
  113. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  114. },
  115. "gitlens.annotations.file.hover.heatmap.enabled": {
  116. "type": "boolean",
  117. "default": true,
  118. "description": "Specifies whether or not to provide heatmap indicators on the left edge of each line"
  119. },
  120. "gitlens.annotations.file.hover.wholeLine": {
  121. "type": "boolean",
  122. "default": true,
  123. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  124. },
  125. "gitlens.annotations.file.recentChanges.hover.details": {
  126. "type": "boolean",
  127. "default": true,
  128. "description": "Specifies whether or not to provide a commit details hover annotation"
  129. },
  130. "gitlens.annotations.file.recentChanges.hover.changes": {
  131. "type": "boolean",
  132. "default": true,
  133. "description": "Specifies whether or not to provide a changes (diff) hover annotation"
  134. },
  135. "gitlens.annotations.line.hover.details": {
  136. "type": "boolean",
  137. "default": true,
  138. "description": "Specifies whether or not to provide a commit details hover annotation for the current line"
  139. },
  140. "gitlens.annotations.line.hover.changes": {
  141. "type": "boolean",
  142. "default": true,
  143. "description": "Specifies whether or not to provide a changes (diff) hover annotation for the current line"
  144. },
  145. "gitlens.annotations.line.trailing.format": {
  146. "type": "string",
  147. "default": "${authorAgo} \u2022 ${message}",
  148. "description": "Specifies the format of the trailing blame annotations\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.annotations.line.trailing.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  149. },
  150. "gitlens.annotations.line.trailing.dateFormat": {
  151. "type": "string",
  152. "default": null,
  153. "description": "Specifies how to format absolute dates (using the `${date}` token) in trailing blame annotations\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  154. },
  155. "gitlens.annotations.line.trailing.hover.details": {
  156. "type": "boolean",
  157. "default": true,
  158. "description": "Specifies whether or not to provide a commit details hover annotation over the trailing blame annotations"
  159. },
  160. "gitlens.annotations.line.trailing.hover.changes": {
  161. "type": "boolean",
  162. "default": true,
  163. "description": "Specifies whether or not to provide a changes (diff) hover annotation over the trailing blame annotations"
  164. },
  165. "gitlens.annotations.line.trailing.hover.wholeLine": {
  166. "type": "boolean",
  167. "default": false,
  168. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  169. },
  170. "gitlens.blame.ignoreWhitespace": {
  171. "type": "boolean",
  172. "default": false,
  173. "description": "Specifies whether or not to ignore whitespace when comparing revisions during blame operations"
  174. },
  175. "gitlens.blame.file.annotationType": {
  176. "type": "string",
  177. "default": "gutter",
  178. "enum": [
  179. "gutter",
  180. "hover"
  181. ],
  182. "description": "Specifies the type of blame annotations that will be shown for the current file\n `gutter` - adds an annotation to the beginning of each line\n `hover` - shows annotations when hovering over each line"
  183. },
  184. "gitlens.blame.file.lineHighlight.enabled": {
  185. "type": "boolean",
  186. "default": true,
  187. "description": "Specifies whether or not to highlight lines associated with the current line"
  188. },
  189. "gitlens.blame.file.lineHighlight.locations": {
  190. "type": "array",
  191. "default": [
  192. "gutter",
  193. "line",
  194. "overviewRuler"
  195. ],
  196. "items": {
  197. "type": "string",
  198. "enum": [
  199. "gutter",
  200. "line",
  201. "overviewRuler"
  202. ]
  203. },
  204. "minItems": 1,
  205. "maxItems": 3,
  206. "uniqueItems": true,
  207. "description": "Specifies where the associated line highlights will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  208. },
  209. "gitlens.blame.line.enabled": {
  210. "type": "boolean",
  211. "default": true,
  212. "description": "Specifies whether or not to provide a blame annotation for the current line, by default\nUse the `gitlens.toggleLineBlame` command to toggle the annotations on and off for the current session"
  213. },
  214. "gitlens.blame.line.annotationType": {
  215. "type": "string",
  216. "default": "trailing",
  217. "enum": [
  218. "trailing",
  219. "hover"
  220. ],
  221. "description": "Specifies the type of blame annotations that will be shown for the current line\n `trailing` - adds an annotation to the end of the current line\n `hover` - shows annotations when hovering over the current line"
  222. },
  223. "gitlens.recentChanges.file.lineHighlight.locations": {
  224. "type": "array",
  225. "default": [
  226. "gutter",
  227. "line",
  228. "overviewRuler"
  229. ],
  230. "items": {
  231. "type": "string",
  232. "enum": [
  233. "gutter",
  234. "line",
  235. "overviewRuler"
  236. ]
  237. },
  238. "minItems": 1,
  239. "maxItems": 3,
  240. "uniqueItems": true,
  241. "description": "Specifies where the highlights of the recently changed lines will be shown\n `gutter` - adds a gutter glyph\n `line` - adds a full-line highlight background color\n `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  242. },
  243. "gitlens.codeLens.enabled": {
  244. "type": "boolean",
  245. "default": true,
  246. "description": "Specifies whether or not to provide any Git code lens, by default\nUse the `gitlens.toggleCodeLens` command to toggle the Git code lens on and off for the current session"
  247. },
  248. "gitlens.codeLens.recentChange.enabled": {
  249. "type": "boolean",
  250. "default": true,
  251. "description": "Specifies whether or not to show a `recent change` code lens showing the author and date of the most recent commit for the file or code block"
  252. },
  253. "gitlens.codeLens.recentChange.command": {
  254. "type": "string",
  255. "default": "gitlens.showQuickCommitFileDetails",
  256. "enum": [
  257. "gitlens.toggleFileBlame",
  258. "gitlens.showBlameHistory",
  259. "gitlens.showFileHistory",
  260. "gitlens.diffWithPrevious",
  261. "gitlens.showQuickCommitDetails",
  262. "gitlens.showQuickCommitFileDetails",
  263. "gitlens.showQuickFileHistory",
  264. "gitlens.showQuickRepoHistory"
  265. ],
  266. "description": "Specifies the command to be executed when the `recent change` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  267. },
  268. "gitlens.codeLens.authors.enabled": {
  269. "type": "boolean",
  270. "default": true,
  271. "description": "Specifies whether or not to show an `authors` code lens showing number of authors of the file or code block and the most prominent author (if there is more than one)"
  272. },
  273. "gitlens.codeLens.authors.command": {
  274. "type": "string",
  275. "default": "gitlens.toggleFileBlame",
  276. "enum": [
  277. "gitlens.toggleFileBlame",
  278. "gitlens.showBlameHistory",
  279. "gitlens.showFileHistory",
  280. "gitlens.diffWithPrevious",
  281. "gitlens.showQuickCommitDetails",
  282. "gitlens.showQuickCommitFileDetails",
  283. "gitlens.showQuickFileHistory",
  284. "gitlens.showQuickRepoHistory"
  285. ],
  286. "description": "Specifies the command to be executed when the `authors` code lens is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current committed file with the previous commit\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  287. },
  288. "gitlens.codeLens.locations": {
  289. "type": "array",
  290. "default": [
  291. "document",
  292. "containers"
  293. ],
  294. "items": {
  295. "type": "string",
  296. "enum": [
  297. "document",
  298. "containers",
  299. "blocks",
  300. "custom"
  301. ]
  302. },
  303. "minItems": 1,
  304. "maxItems": 4,
  305. "uniqueItems": true,
  306. "description": "Specifies where Git code lens will be shown in the document\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `gitlens.codeLens.locationCustomSymbols`"
  307. },
  308. "gitlens.codeLens.customLocationSymbols": {
  309. "type": "array",
  310. "items": {
  311. "type": "string"
  312. },
  313. "uniqueItems": true,
  314. "description": "Specifies the set of document symbols where Git code lens will be shown in the document\nMust be a member of `SymbolKind`"
  315. },
  316. "gitlens.codeLens.perLanguageLocations": {
  317. "type": "array",
  318. "default": [
  319. {
  320. "language": "css",
  321. "locations": [
  322. "document"
  323. ]
  324. },
  325. {
  326. "language": "html",
  327. "locations": [
  328. "document"
  329. ]
  330. },
  331. {
  332. "language": "json",
  333. "locations": [
  334. "document"
  335. ]
  336. },
  337. {
  338. "language": "less",
  339. "locations": [
  340. "document"
  341. ]
  342. },
  343. {
  344. "language": "scss",
  345. "locations": [
  346. "document"
  347. ]
  348. },
  349. {
  350. "language": "vue",
  351. "locations": [
  352. "document"
  353. ]
  354. },
  355. {
  356. "language": "stylus",
  357. "locations": [
  358. "document"
  359. ]
  360. }
  361. ],
  362. "items": {
  363. "type": "object",
  364. "required": [
  365. "language",
  366. "locations"
  367. ],
  368. "properties": {
  369. "language": {
  370. "type": "string",
  371. "description": "Specifies the language to which this code lens override applies"
  372. },
  373. "locations": {
  374. "type": "array",
  375. "default": [
  376. "document",
  377. "containers"
  378. ],
  379. "items": {
  380. "type": "string",
  381. "enum": [
  382. "document",
  383. "containers",
  384. "blocks",
  385. "custom"
  386. ]
  387. },
  388. "minItems": 1,
  389. "maxItems": 4,
  390. "uniqueItems": true,
  391. "description": "Specifies where Git code lens will be shown in the document for the specified language\n `document` - adds code lens at the top of the document\n `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)\n `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines\n `custom` - adds code lens at the start of symbols contained in `customSymbols`"
  392. },
  393. "customSymbols": {
  394. "type": "array",
  395. "items": {
  396. "type": "string"
  397. },
  398. "uniqueItems": true,
  399. "description": "Specifies the set of document symbols where Git code lens will be shown in the document for the specified language\nMust be a member of `SymbolKind`"
  400. }
  401. }
  402. },
  403. "uniqueItems": true,
  404. "description": "Specifies where Git code lens will be shown in the document for the specified languages"
  405. },
  406. "gitlens.codeLens.debug": {
  407. "type": "boolean",
  408. "default": false,
  409. "description": "Specifies whether or not to show debug information in code lens"
  410. },
  411. "gitlens.defaultDateFormat": {
  412. "type": "string",
  413. "default": null,
  414. "description": "Specifies how all absolute dates will be formatted by default\nSee https://momentjs.com/docs/#/displaying/format/ for valid formats"
  415. },
  416. "gitlens.gitExplorer.commitFormat": {
  417. "type": "string",
  418. "default": "${message} \u00a0\u2022\u00a0 ${authorAgo} \u00a0 (${id})",
  419. "description": "Specifies the format of committed changes in the `GitLens` custom view\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  420. },
  421. "gitlens.gitExplorer.commitFileFormat": {
  422. "type": "string",
  423. "default": "${filePath}",
  424. "description": "Specifies the format of a committed file in the `GitLens` custom view\nAvailable tokens\n ${file} - file name\n ${filePath} - file name and path\n ${path} - file path"
  425. },
  426. "gitlens.gitExplorer.enabled": {
  427. "type": "boolean",
  428. "default": true,
  429. "description": "Specifies whether or not to show the `GitLens` custom view"
  430. },
  431. "gitlens.gitExplorer.includeWorkingTree": {
  432. "type": "boolean",
  433. "default": true,
  434. "description": "Specifies whether or not to include working tree files inside the `Repository Status` node of the `GitLens` custom view"
  435. },
  436. "gitlens.gitExplorer.showTrackingBranch": {
  437. "type": "boolean",
  438. "default": true,
  439. "description": "Specifies whether or not to show the tracking branch when displaying local branches in the `GitLens` custom view"
  440. },
  441. "gitlens.gitExplorer.stashFormat": {
  442. "type": "string",
  443. "default": "${message}",
  444. "description": "Specifies the format of stashed changes in the `GitLens` custom view\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  445. },
  446. "gitlens.gitExplorer.stashFileFormat": {
  447. "type": "string",
  448. "default": "${filePath}",
  449. "description": "Specifies the format of a stashed file in the `GitLens` custom view\nAvailable tokens\n ${file} - file name\n ${filePath} - file name and path\n ${path} - file path"
  450. },
  451. "gitlens.gitExplorer.statusFileFormat": {
  452. "type": "string",
  453. "default": "${working}${filePath}",
  454. "description": "Specifies the format of the status of a working or committed file in the `GitLens` custom view\nAvailable tokens\n ${file} - file name\n ${filePath} - file name and path\n ${path} - file path\n ${working} - optional indicator if the file is uncommitted"
  455. },
  456. "gitlens.gitExplorer.view": {
  457. "type": "string",
  458. "default": "auto",
  459. "enum": [
  460. "auto",
  461. "history",
  462. "repository"
  463. ],
  464. "description": "Specifies the starting view (mode) of the `GitLens` custom view\n `auto` - shows the last selected view, defaults to `repository`\n `history` - shows the commit history of the active file\n `repository` - shows a repository explorer"
  465. },
  466. "gitlens.remotes": {
  467. "type": "array",
  468. "default": null,
  469. "items": {
  470. "type": "object",
  471. "required": [
  472. "type",
  473. "domain"
  474. ],
  475. "properties": {
  476. "type": {
  477. "type": "string",
  478. "enum": [
  479. "Bitbucket",
  480. "BitbucketServer",
  481. "GitHub",
  482. "GitLab"
  483. ],
  484. "description": "Specifies the type of the custom remote service\n `Bitbucket`, `BitbucketServer`, `GitHub`, or `GitLab`"
  485. },
  486. "domain": {
  487. "type": "string",
  488. "description": "Specifies the domain name of the custom remote service"
  489. }
  490. }
  491. },
  492. "uniqueItems": true,
  493. "description": "Specifies any custom domains for remote (code-hosting) services"
  494. },
  495. "gitlens.statusBar.enabled": {
  496. "type": "boolean",
  497. "default": true,
  498. "description": "Specifies whether or not to provide blame information on the status bar"
  499. },
  500. "gitlens.statusBar.alignment": {
  501. "type": "string",
  502. "default": "right",
  503. "enum": [
  504. "left",
  505. "right"
  506. ],
  507. "description": "Specifies the blame alignment in the status bar\n `left` - align to the left\n `right` - align to the right"
  508. },
  509. "gitlens.statusBar.command": {
  510. "type": "string",
  511. "default": "gitlens.showQuickCommitDetails",
  512. "enum": [
  513. "gitlens.toggleFileBlame",
  514. "gitlens.showBlameHistory",
  515. "gitlens.showFileHistory",
  516. "gitlens.diffWithPrevious",
  517. "gitlens.diffWithWorking",
  518. "gitlens.toggleCodeLens",
  519. "gitlens.showQuickCommitDetails",
  520. "gitlens.showQuickCommitFileDetails",
  521. "gitlens.showQuickFileHistory",
  522. "gitlens.showQuickRepoHistory"
  523. ],
  524. "description": "Specifies the command to be executed when the blame status bar item is clicked\n `gitlens.toggleFileBlame` - toggles file blame annotations\n `gitlens.showBlameHistory` - opens the blame history explorer\n `gitlens.showFileHistory` - opens the file history explorer\n `gitlens.diffWithPrevious` - compares the current line commit with the previous\n `gitlens.diffWithWorking` - compares the current line commit with the working tree\n `gitlens.toggleCodeLens` - toggles Git code lens\n `gitlens.showQuickCommitDetails` - shows a commit details quick pick\n `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick\n `gitlens.showQuickFileHistory` - shows a file history quick pick\n `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  525. },
  526. "gitlens.statusBar.format": {
  527. "type": "string",
  528. "default": "${authorAgo}",
  529. "description": "Specifies the format of the status bar blame information\nAvailable tokens\n ${id} - commit id\n ${author} - commit author\n ${message} - commit message\n ${ago} - relative commit date (e.g. 1 day ago)\n ${date} - formatted commit date (format specified by `gitlens.statusBar.dateFormat`)\n ${authorAgo} - commit author, relative commit date\nSee https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting for advanced formatting"
  530. },
  531. "gitlens.statusBar.dateFormat": {
  532. "type": "string",
  533. "default": null,
  534. "description": "Specifies the date format of absolute dates shown in the blame information on the status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  535. },
  536. "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
  537. "type": "string",
  538. "default": "Cannot determine recent change or authors (unsaved changes)",
  539. "description": "Specifies the string to be shown in place of both the `recent change` and `authors` code lens when there are unsaved changes"
  540. },
  541. "gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
  542. "type": "string",
  543. "default": "Cannot determine recent change (unsaved changes)",
  544. "description": "Specifies the string to be shown in place of the `recent change` code lens when there are unsaved changes"
  545. },
  546. "gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
  547. "type": "string",
  548. "default": "Cannot determine authors (unsaved changes)",
  549. "description": "Specifies the string to be shown in place of the `authors` code lens when there are unsaved changes"
  550. },
  551. "gitlens.theme.annotations.file.gutter.separateLines": {
  552. "type": "boolean",
  553. "default": true,
  554. "description": "Specifies whether or not gutter blame annotations will be separated by a small gap"
  555. },
  556. "gitlens.theme.annotations.file.gutter.dark.backgroundColor": {
  557. "type": "string",
  558. "default": "rgba(255, 255, 255, 0.075)",
  559. "description": "Specifies the dark theme background color of the gutter blame annotations. Must be a valid css color"
  560. },
  561. "gitlens.theme.annotations.file.gutter.light.backgroundColor": {
  562. "type": "string",
  563. "default": "rgba(0, 0, 0, 0.05)",
  564. "description": "Specifies the light theme background color of the gutter blame annotations. Must be a valid css color"
  565. },
  566. "gitlens.theme.annotations.file.gutter.dark.foregroundColor": {
  567. "type": "string",
  568. "default": "rgb(190, 190, 190)",
  569. "description": "Specifies the dark theme foreground color of the gutter blame annotations. Must be a valid css color"
  570. },
  571. "gitlens.theme.annotations.file.gutter.light.foregroundColor": {
  572. "type": "string",
  573. "default": "rgb(116, 116, 116)",
  574. "description": "Specifies the light theme foreground color of the gutter blame annotations. Must be a valid css color"
  575. },
  576. "gitlens.theme.annotations.file.gutter.dark.uncommittedForegroundColor": {
  577. "type": "string",
  578. "default": "rgba(0, 188, 242, 0.6)",
  579. "description": "Specifies the dark theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  580. },
  581. "gitlens.theme.annotations.file.gutter.light.uncommittedForegroundColor": {
  582. "type": "string",
  583. "default": "rgba(0, 188, 242, 0.6)",
  584. "description": "Specifies the light theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  585. },
  586. "gitlens.theme.annotations.line.trailing.dark.backgroundColor": {
  587. "type": "string",
  588. "default": null,
  589. "description": "Specifies the dark theme background color of the trailing blame annotation. Must be a valid css color"
  590. },
  591. "gitlens.theme.annotations.line.trailing.light.backgroundColor": {
  592. "type": "string",
  593. "default": null,
  594. "description": "Specifies the light theme background color of the trailing blame annotation. Must be a valid css color"
  595. },
  596. "gitlens.theme.annotations.line.trailing.dark.foregroundColor": {
  597. "type": "string",
  598. "default": "rgba(153, 153, 153, 0.35)",
  599. "description": "Specifies the dark theme foreground color of the trailing blame annotation. Must be a valid css color"
  600. },
  601. "gitlens.theme.annotations.line.trailing.light.foregroundColor": {
  602. "type": "string",
  603. "default": "rgba(153, 153, 153, 0.35)",
  604. "description": "Specifies the light theme foreground color of the trailing blame annotation. Must be a valid css color"
  605. },
  606. "gitlens.theme.lineHighlight.dark.backgroundColor": {
  607. "type": "string",
  608. "default": "rgba(0, 188, 242, 0.2)",
  609. "description": "Specifies the dark theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  610. },
  611. "gitlens.theme.lineHighlight.light.backgroundColor": {
  612. "type": "string",
  613. "default": "rgba(0, 188, 242, 0.2)",
  614. "description": "Specifies the light theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  615. },
  616. "gitlens.theme.lineHighlight.dark.overviewRulerColor": {
  617. "type": "string",
  618. "default": "rgba(0, 188, 242, 0.6)",
  619. "description": "Specifies the dark theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  620. },
  621. "gitlens.theme.lineHighlight.light.overviewRulerColor": {
  622. "type": "string",
  623. "default": "rgba(0, 188, 242, 0.6)",
  624. "description": "Specifies the light theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  625. },
  626. "gitlens.advanced.caching.enabled": {
  627. "type": "boolean",
  628. "default": true,
  629. "description": "Specifies whether git output will be cached"
  630. },
  631. "gitlens.advanced.caching.maxLines": {
  632. "type": "number",
  633. "default": 0,
  634. "description": "Specifies the threshold for caching larger documents"
  635. },
  636. "gitlens.advanced.git": {
  637. "type": "string",
  638. "default": null,
  639. "description": "Specifies the git path to use"
  640. },
  641. "gitlens.advanced.gitignore.enabled": {
  642. "type": "boolean",
  643. "default": true,
  644. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  645. },
  646. "gitlens.advanced.maxQuickHistory": {
  647. "type": "number",
  648. "default": 200,
  649. "description": "Specifies the maximum number of QuickPick history entries to show"
  650. },
  651. "gitlens.advanced.menus": {
  652. "type": "object",
  653. "default": {
  654. "editorContext": {
  655. "blame": true,
  656. "copy": true,
  657. "details": true,
  658. "fileDiff": true,
  659. "history": true,
  660. "lineDiff": true,
  661. "remote": true
  662. },
  663. "editorTitle": {
  664. "blame": true,
  665. "fileDiff": false,
  666. "history": false,
  667. "remote": false,
  668. "status": false
  669. },
  670. "editorTitleContext": {
  671. "blame": false,
  672. "fileDiff": false,
  673. "history": false,
  674. "remote": false
  675. },
  676. "explorerContext": {
  677. "fileDiff": true,
  678. "history": true,
  679. "remote": true
  680. }
  681. },
  682. "description": "Specifies which commands will be added to which menus",
  683. "properties": {
  684. "editorContext": {
  685. "type": "object",
  686. "default": {
  687. "blame": true,
  688. "copy": true,
  689. "details": true,
  690. "fileDiff": true,
  691. "history": true,
  692. "lineDiff": true,
  693. "remote": true
  694. },
  695. "properties": {
  696. "blame": {
  697. "type": "boolean",
  698. "default": true
  699. },
  700. "copy": {
  701. "type": "boolean",
  702. "default": true
  703. },
  704. "details": {
  705. "type": "boolean",
  706. "default": true
  707. },
  708. "fileDiff": {
  709. "type": "boolean",
  710. "default": true
  711. },
  712. "history": {
  713. "type": "boolean",
  714. "default": true
  715. },
  716. "lineDiff": {
  717. "type": "boolean",
  718. "default": true
  719. },
  720. "remote": {
  721. "type": "boolean",
  722. "default": true
  723. }
  724. }
  725. },
  726. "editorTitle": {
  727. "type": "object",
  728. "default": {
  729. "blame": true,
  730. "fileDiff": true,
  731. "history": true,
  732. "remote": true,
  733. "status": true
  734. },
  735. "properties": {
  736. "blame": {
  737. "type": "boolean",
  738. "default": true
  739. },
  740. "fileDiff": {
  741. "type": "boolean",
  742. "default": true
  743. },
  744. "history": {
  745. "type": "boolean",
  746. "default": true
  747. },
  748. "remote": {
  749. "type": "boolean",
  750. "default": true
  751. },
  752. "status": {
  753. "type": "boolean",
  754. "default": true
  755. }
  756. }
  757. },
  758. "editorTitleContext": {
  759. "type": "object",
  760. "default": {
  761. "blame": true,
  762. "fileDiff": true,
  763. "history": true,
  764. "remote": true
  765. },
  766. "properties": {
  767. "blame": {
  768. "type": "boolean",
  769. "default": true
  770. },
  771. "fileDiff": {
  772. "type": "boolean",
  773. "default": true
  774. },
  775. "history": {
  776. "type": "boolean",
  777. "default": true
  778. },
  779. "remote": {
  780. "type": "boolean",
  781. "default": true
  782. }
  783. }
  784. },
  785. "explorerContext": {
  786. "type": "object",
  787. "default": {
  788. "fileDiff": true,
  789. "history": true,
  790. "remote": true
  791. },
  792. "properties": {
  793. "fileDiff": {
  794. "type": "boolean",
  795. "default": true
  796. },
  797. "history": {
  798. "type": "boolean",
  799. "default": true
  800. },
  801. "remote": {
  802. "type": "boolean",
  803. "default": true
  804. }
  805. }
  806. }
  807. }
  808. },
  809. "gitlens.advanced.quickPick.closeOnFocusOut": {
  810. "type": "boolean",
  811. "default": true,
  812. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  813. },
  814. "gitlens.advanced.telemetry.enabled": {
  815. "type": "boolean",
  816. "default": true,
  817. "description": "Specifies whether or not to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting"
  818. },
  819. "gitlens.advanced.toggleWhitespace.enabled": {
  820. "type": "boolean",
  821. "default": false,
  822. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  823. }
  824. }
  825. },
  826. "commands": [
  827. {
  828. "command": "gitlens.diffDirectory",
  829. "title": "Directory Compare",
  830. "category": "GitLens"
  831. },
  832. {
  833. "command": "gitlens.diffWith",
  834. "title": "Compare File Revisions",
  835. "category": "GitLens"
  836. },
  837. {
  838. "command": "gitlens.diffWithBranch",
  839. "title": "Compare File with Branch...",
  840. "category": "GitLens"
  841. },
  842. {
  843. "command": "gitlens.diffWithNext",
  844. "title": "Compare File with Next Revision",
  845. "category": "GitLens"
  846. },
  847. {
  848. "command": "gitlens.diffWithPrevious",
  849. "title": "Compare File with Previous Revision",
  850. "category": "GitLens"
  851. },
  852. {
  853. "command": "gitlens.diffLineWithPrevious",
  854. "title": "Compare Line Revision with Previous",
  855. "category": "GitLens"
  856. },
  857. {
  858. "command": "gitlens.diffWithRevision",
  859. "title": "Compare File with Revision...",
  860. "category": "GitLens"
  861. },
  862. {
  863. "command": "gitlens.diffWithWorking",
  864. "title": "Compare File with Working Revision",
  865. "category": "GitLens"
  866. },
  867. {
  868. "command": "gitlens.diffLineWithWorking",
  869. "title": "Compare Line Revision with Working",
  870. "category": "GitLens"
  871. },
  872. {
  873. "command": "gitlens.showFileBlame",
  874. "title": "Show File Blame Annotations",
  875. "category": "GitLens"
  876. },
  877. {
  878. "command": "gitlens.showLineBlame",
  879. "title": "Show Line Blame Annotations",
  880. "category": "GitLens"
  881. },
  882. {
  883. "command": "gitlens.toggleFileBlame",
  884. "title": "Toggle File Blame Annotations",
  885. "category": "GitLens",
  886. "icon": {
  887. "dark": "images/dark/git-icon.svg",
  888. "light": "images/light/git-icon.svg"
  889. }
  890. },
  891. {
  892. "command": "gitlens.clearFileAnnotations",
  893. "title": "Clear File Annotations",
  894. "category": "GitLens",
  895. "icon": {
  896. "dark": "images/dark/git-icon-orange.svg",
  897. "light": "images/light/git-icon-orange.svg"
  898. }
  899. },
  900. {
  901. "command": "gitlens.computingFileAnnotations",
  902. "title": "Computing File Annotations...",
  903. "category": "GitLens",
  904. "icon": {
  905. "dark": "images/dark/git-icon-progress.svg",
  906. "light": "images/light/git-icon-progress.svg"
  907. }
  908. },
  909. {
  910. "command": "gitlens.toggleFileRecentChanges",
  911. "title": "Toggle Recent File Changes Annotations",
  912. "category": "GitLens",
  913. "icon": {
  914. "dark": "images/dark/git-icon.svg",
  915. "light": "images/light/git-icon.svg"
  916. }
  917. },
  918. {
  919. "command": "gitlens.toggleLineBlame",
  920. "title": "Toggle Line Blame Annotations",
  921. "category": "GitLens"
  922. },
  923. {
  924. "command": "gitlens.toggleCodeLens",
  925. "title": "Toggle Git Code Lens",
  926. "category": "GitLens"
  927. },
  928. {
  929. "command": "gitlens.showBlameHistory",
  930. "title": "Open Blame History Explorer",
  931. "category": "GitLens"
  932. },
  933. {
  934. "command": "gitlens.showCommitSearch",
  935. "title": "Search Commits",
  936. "category": "GitLens",
  937. "icon": {
  938. "dark": "images/dark/icon-search.svg",
  939. "light": "images/light/icon-search.svg"
  940. }
  941. },
  942. {
  943. "command": "gitlens.showFileHistory",
  944. "title": "Open File History Explorer",
  945. "category": "GitLens"
  946. },
  947. {
  948. "command": "gitlens.showLastQuickPick",
  949. "title": "Show Last Opened Quick Pick",
  950. "category": "GitLens"
  951. },
  952. {
  953. "command": "gitlens.showQuickCommitDetails",
  954. "title": "Show Commit Details",
  955. "category": "GitLens"
  956. },
  957. {
  958. "command": "gitlens.showQuickCommitFileDetails",
  959. "title": "Show Commit File Details",
  960. "category": "GitLens"
  961. },
  962. {
  963. "command": "gitlens.showQuickFileHistory",
  964. "title": "Show File History",
  965. "category": "GitLens"
  966. },
  967. {
  968. "command": "gitlens.showQuickBranchHistory",
  969. "title": "Show Branch History",
  970. "category": "GitLens"
  971. },
  972. {
  973. "command": "gitlens.showQuickRepoHistory",
  974. "title": "Show Current Branch History",
  975. "category": "GitLens"
  976. },
  977. {
  978. "command": "gitlens.showQuickRepoStatus",
  979. "title": "Show Repository Status",
  980. "category": "GitLens"
  981. },
  982. {
  983. "command": "gitlens.showQuickStashList",
  984. "title": "Show Stashed Changes",
  985. "category": "GitLens"
  986. },
  987. {
  988. "command": "gitlens.copyShaToClipboard",
  989. "title": "Copy Commit ID to Clipboard",
  990. "category": "GitLens"
  991. },
  992. {
  993. "command": "gitlens.copyMessageToClipboard",
  994. "title": "Copy Commit Message to Clipboard",
  995. "category": "GitLens"
  996. },
  997. {
  998. "command": "gitlens.closeUnchangedFiles",
  999. "title": "Close Unchanged Files",
  1000. "category": "GitLens"
  1001. },
  1002. {
  1003. "command": "gitlens.openChangedFiles",
  1004. "title": "Open Changed Files",
  1005. "category": "GitLens"
  1006. },
  1007. {
  1008. "command": "gitlens.openBranchesInRemote",
  1009. "title": "Open Branches in Remote",
  1010. "category": "GitLens"
  1011. },
  1012. {
  1013. "command": "gitlens.openBranchInRemote",
  1014. "title": "Open Branch in Remote",
  1015. "category": "GitLens"
  1016. },
  1017. {
  1018. "command": "gitlens.openCommitInRemote",
  1019. "title": "Open Commit in Remote",
  1020. "category": "GitLens"
  1021. },
  1022. {
  1023. "command": "gitlens.openFileInRemote",
  1024. "title": "Open File in Remote",
  1025. "category": "GitLens"
  1026. },
  1027. {
  1028. "command": "gitlens.openRepoInRemote",
  1029. "title": "Open Repository in Remote",
  1030. "category": "GitLens"
  1031. },
  1032. {
  1033. "command": "gitlens.stashApply",
  1034. "title": "Apply Stashed Changes",
  1035. "category": "GitLens"
  1036. },
  1037. {
  1038. "command": "gitlens.stashDelete",
  1039. "title": "Delete Stashed Changes",
  1040. "category": "GitLens"
  1041. },
  1042. {
  1043. "command": "gitlens.stashSave",
  1044. "title": "Stash Changes",
  1045. "category": "GitLens",
  1046. "icon": {
  1047. "dark": "images/dark/icon-add.svg",
  1048. "light": "images/light/icon-add.svg"
  1049. }
  1050. },
  1051. {
  1052. "command": "gitlens.resetSuppressedWarnings",
  1053. "title": "Reset Suppressed Warnings",
  1054. "category": "GitLens"
  1055. },
  1056. {
  1057. "command": "gitlens.gitExplorer.refresh",
  1058. "title": "Refresh",
  1059. "category": "GitLens",
  1060. "icon": {
  1061. "dark": "images/dark/icon-refresh.svg",
  1062. "light": "images/light/icon-refresh.svg"
  1063. }
  1064. },
  1065. {
  1066. "command": "gitlens.gitExplorer.switchToHistoryView",
  1067. "title": "Switch to History View",
  1068. "category": "GitLens",
  1069. "icon": {
  1070. "dark": "images/dark/icon-history.svg",
  1071. "light": "images/light/icon-history.svg"
  1072. }
  1073. },
  1074. {
  1075. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1076. "title": "Switch to Repository View",
  1077. "category": "GitLens",
  1078. "icon": {
  1079. "dark": "images/dark/icon-repo.svg",
  1080. "light": "images/light/icon-repo.svg"
  1081. }
  1082. },
  1083. {
  1084. "command": "gitlens.gitExplorer.openChanges",
  1085. "title": "Open Changes",
  1086. "category": "GitLens"
  1087. },
  1088. {
  1089. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1090. "title": "Open Changes with Working Tree",
  1091. "category": "GitLens"
  1092. },
  1093. {
  1094. "command": "gitlens.gitExplorer.openFile",
  1095. "title": "Open File",
  1096. "category": "GitLens"
  1097. },
  1098. {
  1099. "command": "gitlens.gitExplorer.openFileRevision",
  1100. "title": "Open Revision",
  1101. "category": "GitLens"
  1102. },
  1103. {
  1104. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1105. "title": "Open Revision in Remote",
  1106. "category": "GitLens"
  1107. },
  1108. {
  1109. "command": "gitlens.gitExplorer.openChangedFiles",
  1110. "title": "Open Files",
  1111. "category": "GitLens"
  1112. },
  1113. {
  1114. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1115. "title": "Open All Changes",
  1116. "category": "GitLens"
  1117. },
  1118. {
  1119. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1120. "title": "Open All Changes with Working Tree",
  1121. "category": "GitLens"
  1122. },
  1123. {
  1124. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1125. "title": "Open Revisions",
  1126. "category": "GitLens"
  1127. },
  1128. {
  1129. "command": "gitlens.gitExplorer.applyChanges",
  1130. "title": "Apply Changes",
  1131. "category": "GitLens"
  1132. }
  1133. ],
  1134. "menus": {
  1135. "commandPalette": [
  1136. {
  1137. "command": "gitlens.diffDirectory",
  1138. "when": "gitlens:enabled"
  1139. },
  1140. {
  1141. "command": "gitlens.diffWith",
  1142. "when": "false"
  1143. },
  1144. {
  1145. "command": "gitlens.diffWithBranch",
  1146. "when": "gitlens:isTracked"
  1147. },
  1148. {
  1149. "command": "gitlens.diffWithNext",
  1150. "when": "gitlens:isTracked"
  1151. },
  1152. {
  1153. "command": "gitlens.diffWithPrevious",
  1154. "when": "gitlens:isTracked"
  1155. },
  1156. {
  1157. "command": "gitlens.diffLineWithPrevious",
  1158. "when": "gitlens:isBlameable"
  1159. },
  1160. {
  1161. "command": "gitlens.diffWithRevision",
  1162. "when": "gitlens:isTracked"
  1163. },
  1164. {
  1165. "command": "gitlens.diffWithWorking",
  1166. "when": "gitlens:isTracked"
  1167. },
  1168. {
  1169. "command": "gitlens.diffLineWithWorking",
  1170. "when": "gitlens:isBlameable"
  1171. },
  1172. {
  1173. "command": "gitlens.showFileBlame",
  1174. "when": "gitlens:isBlameable"
  1175. },
  1176. {
  1177. "command": "gitlens.showLineBlame",
  1178. "when": "gitlens:isBlameable"
  1179. },
  1180. {
  1181. "command": "gitlens.toggleFileBlame",
  1182. "when": "gitlens:isBlameable"
  1183. },
  1184. {
  1185. "command": "gitlens.clearFileAnnotations",
  1186. "when": "gitlens:annotationStatus == computed"
  1187. },
  1188. {
  1189. "command": "gitlens.computingFileAnnotations",
  1190. "when": "false"
  1191. },
  1192. {
  1193. "command": "gitlens.toggleFileRecentChanges",
  1194. "when": "gitlens:isTracked"
  1195. },
  1196. {
  1197. "command": "gitlens.toggleLineBlame",
  1198. "when": "gitlens:isBlameable"
  1199. },
  1200. {
  1201. "command": "gitlens.toggleCodeLens",
  1202. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  1203. },
  1204. {
  1205. "command": "gitlens.showBlameHistory",
  1206. "when": "gitlens:isBlameable"
  1207. },
  1208. {
  1209. "command": "gitlens.showFileHistory",
  1210. "when": "gitlens:isTracked"
  1211. },
  1212. {
  1213. "command": "gitlens.showLastQuickPick",
  1214. "when": "gitlens:enabled"
  1215. },
  1216. {
  1217. "command": "gitlens.showQuickCommitDetails",
  1218. "when": "gitlens:isBlameable"
  1219. },
  1220. {
  1221. "command": "gitlens.showQuickCommitFileDetails",
  1222. "when": "gitlens:isBlameable"
  1223. },
  1224. {
  1225. "command": "gitlens.showQuickFileHistory",
  1226. "when": "gitlens:isTracked"
  1227. },
  1228. {
  1229. "command": "gitlens.showQuickBranchHistory",
  1230. "when": "gitlens:enabled"
  1231. },
  1232. {
  1233. "command": "gitlens.showQuickRepoHistory",
  1234. "when": "gitlens:enabled"
  1235. },
  1236. {
  1237. "command": "gitlens.showQuickRepoStatus",
  1238. "when": "gitlens:enabled"
  1239. },
  1240. {
  1241. "command": "gitlens.showQuickStashList",
  1242. "when": "gitlens:enabled"
  1243. },
  1244. {
  1245. "command": "gitlens.copyShaToClipboard",
  1246. "when": "gitlens:isBlameable"
  1247. },
  1248. {
  1249. "command": "gitlens.copyMessageToClipboard",
  1250. "when": "gitlens:isBlameable"
  1251. },
  1252. {
  1253. "command": "gitlens.closeUnchangedFiles",
  1254. "when": "gitlens:enabled"
  1255. },
  1256. {
  1257. "command": "gitlens.openChangedFiles",
  1258. "when": "gitlens:enabled"
  1259. },
  1260. {
  1261. "command": "gitlens.openBranchesInRemote",
  1262. "when": "gitlens:hasRemotes"
  1263. },
  1264. {
  1265. "command": "gitlens.openBranchInRemote",
  1266. "when": "gitlens:hasRemotes"
  1267. },
  1268. {
  1269. "command": "gitlens.openCommitInRemote",
  1270. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  1271. },
  1272. {
  1273. "command": "gitlens.openFileInRemote",
  1274. "when": "gitlens:isTracked && gitlens:hasRemotes"
  1275. },
  1276. {
  1277. "command": "gitlens.openRepoInRemote",
  1278. "when": "gitlens:hasRemotes"
  1279. },
  1280. {
  1281. "command": "gitlens.stashApply",
  1282. "when": "gitlens:enabled"
  1283. },
  1284. {
  1285. "command": "gitlens.stashSave",
  1286. "when": "gitlens:enabled"
  1287. },
  1288. {
  1289. "command": "gitlens.resetSuppressedWarnings",
  1290. "when": "gitlens:enabled"
  1291. },
  1292. {
  1293. "command": "gitlens.gitExplorer.refresh",
  1294. "when": "false"
  1295. },
  1296. {
  1297. "command": "gitlens.gitExplorer.switchToHistoryView",
  1298. "when": "gitlens:gitExplorer:view == repository"
  1299. },
  1300. {
  1301. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1302. "when": "gitlens:gitExplorer:view == history"
  1303. },
  1304. {
  1305. "command": "gitlens.gitExplorer.openChanges",
  1306. "when": "false"
  1307. },
  1308. {
  1309. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1310. "when": "false"
  1311. },
  1312. {
  1313. "command": "gitlens.gitExplorer.openFile",
  1314. "when": "false"
  1315. },
  1316. {
  1317. "command": "gitlens.gitExplorer.openFileRevision",
  1318. "when": "false"
  1319. },
  1320. {
  1321. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1322. "when": "false"
  1323. },
  1324. {
  1325. "command": "gitlens.gitExplorer.openChangedFiles",
  1326. "when": "false"
  1327. },
  1328. {
  1329. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1330. "when": "false"
  1331. },
  1332. {
  1333. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1334. "when": "false"
  1335. },
  1336. {
  1337. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1338. "when": "false"
  1339. },
  1340. {
  1341. "command": "gitlens.gitExplorer.applyChanges",
  1342. "when": "false"
  1343. }
  1344. ],
  1345. "editor/context": [
  1346. {
  1347. "command": "gitlens.openFileInRemote",
  1348. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1349. "group": "navigation@100"
  1350. },
  1351. {
  1352. "command": "gitlens.diffLineWithPrevious",
  1353. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1354. "group": "1_gitlens@1"
  1355. },
  1356. {
  1357. "command": "gitlens.diffLineWithWorking",
  1358. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1359. "group": "1_gitlens@2"
  1360. },
  1361. {
  1362. "command": "gitlens.showQuickCommitFileDetails",
  1363. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1364. "group": "1_gitlens@3"
  1365. },
  1366. {
  1367. "command": "gitlens.diffWithPrevious",
  1368. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1369. "group": "1_gitlens_1@1"
  1370. },
  1371. {
  1372. "command": "gitlens.diffWithWorking",
  1373. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1374. "group": "1_gitlens_1@2"
  1375. },
  1376. {
  1377. "command": "gitlens.showQuickFileHistory",
  1378. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1379. "group": "3_gitlens@1"
  1380. },
  1381. {
  1382. "command": "gitlens.toggleFileBlame",
  1383. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1384. "group": "3_gitlens@2"
  1385. },
  1386. {
  1387. "command": "gitlens.copyShaToClipboard",
  1388. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1389. "group": "9_gitlens@1"
  1390. },
  1391. {
  1392. "command": "gitlens.copyMessageToClipboard",
  1393. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1394. "group": "9_gitlens@2"
  1395. }
  1396. ],
  1397. "editor/title": [
  1398. {
  1399. "command": "gitlens.toggleFileBlame",
  1400. "alt": "gitlens.toggleFileRecentChanges",
  1401. "when": "gitlens:isBlameable && !gitlens:annotationStatus && config.gitlens.advanced.menus.editorTitle.blame",
  1402. "group": "navigation@100"
  1403. },
  1404. {
  1405. "command": "gitlens.computingFileAnnotations",
  1406. "when": "gitlens:annotationStatus == computing && config.gitlens.advanced.menus.editorTitle.blame",
  1407. "group": "navigation@100"
  1408. },
  1409. {
  1410. "command": "gitlens.clearFileAnnotations",
  1411. "when": "gitlens:annotationStatus == computed && config.gitlens.advanced.menus.editorTitle.blame",
  1412. "group": "navigation@100"
  1413. },
  1414. {
  1415. "command": "gitlens.openFileInRemote",
  1416. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitle.remote",
  1417. "group": "1_gitlens"
  1418. },
  1419. {
  1420. "command": "gitlens.openRepoInRemote",
  1421. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitle.remote",
  1422. "group": "1_gitlens"
  1423. },
  1424. {
  1425. "command": "gitlens.diffWithPrevious",
  1426. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1427. "group": "2_gitlens"
  1428. },
  1429. {
  1430. "command": "gitlens.diffWithWorking",
  1431. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1432. "group": "2_gitlens"
  1433. },
  1434. {
  1435. "command": "gitlens.showQuickFileHistory",
  1436. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1437. "group": "2_gitlens_1"
  1438. },
  1439. {
  1440. "command": "gitlens.showQuickRepoHistory",
  1441. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1442. "group": "2_gitlens_1"
  1443. },
  1444. {
  1445. "command": "gitlens.showQuickRepoStatus",
  1446. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1447. "group": "2_gitlens_1"
  1448. }
  1449. ],
  1450. "editor/title/context": [
  1451. {
  1452. "command": "gitlens.openFileInRemote",
  1453. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.editorTitleContext.remote",
  1454. "group": "1_gitlens"
  1455. },
  1456. {
  1457. "command": "gitlens.diffWithPrevious",
  1458. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1459. "group": "1_gitlens_1@1"
  1460. },
  1461. {
  1462. "command": "gitlens.diffWithWorking",
  1463. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1464. "group": "1_gitlens_1@2"
  1465. },
  1466. {
  1467. "command": "gitlens.showQuickFileHistory",
  1468. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1469. "group": "1_gitlens_2@1"
  1470. },
  1471. {
  1472. "command": "gitlens.toggleFileBlame",
  1473. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1474. "group": "1_gitlens_2@2"
  1475. }
  1476. ],
  1477. "explorer/context": [
  1478. {
  1479. "command": "gitlens.openFileInRemote",
  1480. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.advanced.menus.explorerContext.remote",
  1481. "group": "navigation@100"
  1482. },
  1483. {
  1484. "command": "gitlens.diffWithPrevious",
  1485. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1486. "group": "1_gitlens@1"
  1487. },
  1488. {
  1489. "command": "gitlens.diffWithWorking",
  1490. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1491. "group": "1_gitlens@2"
  1492. },
  1493. {
  1494. "command": "gitlens.showQuickFileHistory",
  1495. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  1496. "group": "1_gitlens_1@1"
  1497. }
  1498. ],
  1499. "scm/resourceGroup/context": [
  1500. {
  1501. "command": "gitlens.openChangedFiles",
  1502. "when": "gitlens:enabled",
  1503. "group": "1_gitlens@1"
  1504. },
  1505. {
  1506. "command": "gitlens.closeUnchangedFiles",
  1507. "when": "gitlens:enabled",
  1508. "group": "1_gitlens@2"
  1509. },
  1510. {
  1511. "command": "gitlens.stashSave",
  1512. "when": "gitlens:enabled",
  1513. "group": "2_gitlens@1"
  1514. }
  1515. ],
  1516. "scm/resourceState/context": [
  1517. {
  1518. "command": "gitlens.openFileInRemote",
  1519. "when": "gitlens:enabled && gitlens:hasRemotes",
  1520. "group": "navigation"
  1521. },
  1522. {
  1523. "command": "gitlens.diffWithRevision",
  1524. "when": "gitlens:enabled",
  1525. "group": "1_gitlens@1"
  1526. },
  1527. {
  1528. "command": "gitlens.showQuickFileHistory",
  1529. "when": "gitlens:enabled",
  1530. "group": "1_gitlens_1@1"
  1531. },
  1532. {
  1533. "command": "gitlens.stashSave",
  1534. "when": "gitlens:enabled",
  1535. "group": "2_gitlens@1"
  1536. }
  1537. ],
  1538. "view/title": [
  1539. {
  1540. "command": "gitlens.showCommitSearch",
  1541. "when": "view == gitlens.gitExplorer",
  1542. "group": "navigation@1"
  1543. },
  1544. {
  1545. "command": "gitlens.gitExplorer.switchToHistoryView",
  1546. "when": "view == gitlens.gitExplorer && gitlens:gitExplorer:view == repository",
  1547. "group": "navigation@2"
  1548. },
  1549. {
  1550. "command": "gitlens.gitExplorer.switchToRepositoryView",
  1551. "when": "view == gitlens.gitExplorer && gitlens:gitExplorer:view == history",
  1552. "group": "navigation@3"
  1553. },
  1554. {
  1555. "command": "gitlens.gitExplorer.refresh",
  1556. "when": "view == gitlens.gitExplorer",
  1557. "group": "navigation@4"
  1558. }
  1559. ],
  1560. "view/item/context": [
  1561. {
  1562. "command": "gitlens.openBranchesInRemote",
  1563. "when": "view == gitlens.gitExplorer && viewItem == gitlens:branches:remote",
  1564. "group": "1_gitlens@1"
  1565. },
  1566. {
  1567. "command": "gitlens.openBranchInRemote",
  1568. "when": "view == gitlens.gitExplorer && viewItem == gitlens:branch-history:remote",
  1569. "group": "1_gitlens@1"
  1570. },
  1571. {
  1572. "command": "gitlens.openCommitInRemote",
  1573. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1574. "group": "1_gitlens@1"
  1575. },
  1576. {
  1577. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1578. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1579. "group": "2_gitlens@1"
  1580. },
  1581. {
  1582. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1583. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1584. "group": "2_gitlens@1"
  1585. },
  1586. {
  1587. "command": "gitlens.gitExplorer.openChangedFiles",
  1588. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1589. "group": "3_gitlens@1"
  1590. },
  1591. {
  1592. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1593. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1594. "group": "3_gitlens@2"
  1595. },
  1596. {
  1597. "command": "gitlens.copyShaToClipboard",
  1598. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1599. "group": "4_gitlens@1"
  1600. },
  1601. {
  1602. "command": "gitlens.copyMessageToClipboard",
  1603. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1604. "group": "4_gitlens@2"
  1605. },
  1606. {
  1607. "command": "gitlens.showQuickCommitDetails",
  1608. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit",
  1609. "group": "5_gitlens@1"
  1610. },
  1611. {
  1612. "command": "gitlens.gitExplorer.openChanges",
  1613. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1614. "group": "1_gitlens@1"
  1615. },
  1616. {
  1617. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1618. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1619. "group": "1_gitlens@2"
  1620. },
  1621. {
  1622. "command": "gitlens.gitExplorer.openFile",
  1623. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1624. "group": "2_gitlens@1"
  1625. },
  1626. {
  1627. "command": "gitlens.gitExplorer.openFileRevision",
  1628. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1629. "group": "2_gitlens@2"
  1630. },
  1631. {
  1632. "command": "gitlens.openFileInRemote",
  1633. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1634. "group": "3_gitlens@1"
  1635. },
  1636. {
  1637. "command": "gitlens.gitExplorer.openFileRevisionInRemote",
  1638. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1639. "group": "3_gitlens@2"
  1640. },
  1641. {
  1642. "command": "gitlens.gitExplorer.applyChanges",
  1643. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1644. "group": "4_gitlens@1"
  1645. },
  1646. {
  1647. "command": "gitlens.showQuickFileHistory",
  1648. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file && gitlens:gitExplorer:view == repository",
  1649. "group": "5_gitlens@1"
  1650. },
  1651. {
  1652. "command": "gitlens.showQuickCommitFileDetails",
  1653. "when": "view == gitlens.gitExplorer && viewItem == gitlens:commit-file",
  1654. "group": "5_gitlens@2"
  1655. },
  1656. {
  1657. "command": "gitlens.gitExplorer.openFile",
  1658. "when": "view == gitlens.gitExplorer && viewItem == gitlens:file-history",
  1659. "group": "1_gitlens@1"
  1660. },
  1661. {
  1662. "command": "gitlens.openFileInRemote",
  1663. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:file-history",
  1664. "group": "1_gitlens@2"
  1665. },
  1666. {
  1667. "command": "gitlens.openBranchesInRemote",
  1668. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:remote",
  1669. "group": "1_gitlens@1"
  1670. },
  1671. {
  1672. "command": "gitlens.openRepoInRemote",
  1673. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:remote",
  1674. "group": "1_gitlens@2"
  1675. },
  1676. {
  1677. "command": "gitlens.stashSave",
  1678. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stashes",
  1679. "group": "1_gitlens@1"
  1680. },
  1681. {
  1682. "command": "gitlens.stashApply",
  1683. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1684. "group": "1_gitlens@1"
  1685. },
  1686. {
  1687. "command": "gitlens.stashDelete",
  1688. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1689. "group": "1_gitlens@2"
  1690. },
  1691. {
  1692. "command": "gitlens.gitExplorer.openChangedFileChanges",
  1693. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1694. "group": "2_gitlens@1"
  1695. },
  1696. {
  1697. "command": "gitlens.gitExplorer.openChangedFileChangesWithWorking",
  1698. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1699. "group": "2_gitlens@1"
  1700. },
  1701. {
  1702. "command": "gitlens.gitExplorer.openChangedFiles",
  1703. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1704. "group": "3_gitlens@1"
  1705. },
  1706. {
  1707. "command": "gitlens.gitExplorer.openChangedFileRevisions",
  1708. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1709. "group": "3_gitlens@2"
  1710. },
  1711. {
  1712. "command": "gitlens.copyMessageToClipboard",
  1713. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash",
  1714. "group": "4_gitlens@1"
  1715. },
  1716. {
  1717. "command": "gitlens.gitExplorer.applyChanges",
  1718. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1719. "group": "1_gitlens@1"
  1720. },
  1721. {
  1722. "command": "gitlens.gitExplorer.openChanges",
  1723. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1724. "group": "2_gitlens@1"
  1725. },
  1726. {
  1727. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1728. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1729. "group": "2_gitlens@2"
  1730. },
  1731. {
  1732. "command": "gitlens.gitExplorer.openFile",
  1733. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1734. "group": "3_gitlens@1"
  1735. },
  1736. {
  1737. "command": "gitlens.gitExplorer.openFileRevision",
  1738. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1739. "group": "3_gitlens@2"
  1740. },
  1741. {
  1742. "command": "gitlens.openFileInRemote",
  1743. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1744. "group": "4_gitlens@1"
  1745. },
  1746. {
  1747. "command": "gitlens.showQuickFileHistory",
  1748. "when": "view == gitlens.gitExplorer && viewItem == gitlens:stash-file",
  1749. "group": "5_gitlens@1"
  1750. },
  1751. {
  1752. "command": "gitlens.openRepoInRemote",
  1753. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:status",
  1754. "group": "1_gitlens@1"
  1755. },
  1756. {
  1757. "command": "gitlens.gitExplorer.openChanges",
  1758. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1759. "group": "1_gitlens@1"
  1760. },
  1761. {
  1762. "command": "gitlens.gitExplorer.openChangesWithWorking",
  1763. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1764. "group": "1_gitlens@2"
  1765. },
  1766. {
  1767. "command": "gitlens.gitExplorer.openFile",
  1768. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1769. "group": "2_gitlens@1"
  1770. },
  1771. {
  1772. "command": "gitlens.gitExplorer.openFileRevision",
  1773. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1774. "group": "2_gitlens@2"
  1775. },
  1776. {
  1777. "command": "gitlens.openFileInRemote",
  1778. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1779. "group": "3_gitlens@1"
  1780. },
  1781. {
  1782. "command": "gitlens.showQuickFileHistory",
  1783. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file && gitlens:gitExplorer:view == repository",
  1784. "group": "5_gitlens@1"
  1785. },
  1786. {
  1787. "command": "gitlens.showQuickCommitFileDetails",
  1788. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file",
  1789. "group": "5_gitlens@2"
  1790. },
  1791. {
  1792. "command": "gitlens.gitExplorer.openFile",
  1793. "when": "view == gitlens.gitExplorer && viewItem == gitlens:status-file-commits",
  1794. "group": "1_gitlens@1"
  1795. },
  1796. {
  1797. "command": "gitlens.openFileInRemote",
  1798. "when": "gitlens:hasRemotes && view == gitlens.gitExplorer && viewItem == gitlens:status-file-commits",
  1799. "group": "1_gitlens@2"
  1800. },
  1801. {
  1802. "command": "gitlens.gitExplorer.refresh",
  1803. "when": "view == gitlens.gitExplorer && viewItem != gitlens:commit-file && viewItem != gitlens:stash-file && viewItem != gitlens:status-file",
  1804. "group": "9_gitlens@1"
  1805. }
  1806. ]
  1807. },
  1808. "keybindings": [
  1809. {
  1810. "command": "gitlens.key.left",
  1811. "key": "alt+left",
  1812. "when": "gitlens:key:left"
  1813. },
  1814. {
  1815. "command": "gitlens.key.right",
  1816. "key": "alt+right",
  1817. "when": "gitlens:key:right"
  1818. },
  1819. {
  1820. "command": "gitlens.key.,",
  1821. "key": "alt+,",
  1822. "when": "gitlens:key:,"
  1823. },
  1824. {
  1825. "command": "gitlens.key..",
  1826. "key": "alt+.",
  1827. "when": "gitlens:key:."
  1828. },
  1829. {
  1830. "command": "gitlens.key.escape",
  1831. "key": "escape",
  1832. "when": "gitlens:key:escape"
  1833. },
  1834. {
  1835. "command": "gitlens.toggleFileBlame",
  1836. "key": "alt+b",
  1837. "when": "editorTextFocus && gitlens:isTracked"
  1838. },
  1839. {
  1840. "command": "gitlens.toggleCodeLens",
  1841. "key": "shift+alt+b",
  1842. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1843. },
  1844. {
  1845. "command": "gitlens.showLastQuickPick",
  1846. "key": "alt+-",
  1847. "when": "gitlens:enabled"
  1848. },
  1849. {
  1850. "command": "gitlens.showCommitSearch",
  1851. "key": "alt+/",
  1852. "when": "gitlens:enabled"
  1853. },
  1854. {
  1855. "command": "gitlens.showQuickFileHistory",
  1856. "key": "alt+h",
  1857. "when": "gitlens:enabled"
  1858. },
  1859. {
  1860. "command": "gitlens.showQuickRepoHistory",
  1861. "key": "shift+alt+h",
  1862. "when": "gitlens:enabled"
  1863. },
  1864. {
  1865. "command": "gitlens.showQuickRepoStatus",
  1866. "key": "alt+s",
  1867. "when": "gitlens:enabled"
  1868. },
  1869. {
  1870. "command": "gitlens.showQuickCommitFileDetails",
  1871. "key": "alt+c",
  1872. "when": "editorTextFocus && gitlens:enabled"
  1873. },
  1874. {
  1875. "command": "gitlens.diffWithNext",
  1876. "key": "alt+.",
  1877. "when": "editorTextFocus && gitlens:isTracked"
  1878. },
  1879. {
  1880. "command": "gitlens.diffLineWithPrevious",
  1881. "key": "shift+alt+,",
  1882. "when": "editorTextFocus && gitlens:isTracked"
  1883. },
  1884. {
  1885. "command": "gitlens.diffWithPrevious",
  1886. "key": "alt+,",
  1887. "when": "editorTextFocus && gitlens:isTracked"
  1888. },
  1889. {
  1890. "command": "gitlens.diffLineWithWorking",
  1891. "key": "alt+w",
  1892. "when": "editorTextFocus && gitlens:isTracked"
  1893. },
  1894. {
  1895. "command": "gitlens.diffWithWorking",
  1896. "key": "shift+alt+w",
  1897. "when": "editorTextFocus && gitlens:isTracked"
  1898. }
  1899. ],
  1900. "views": {
  1901. "explorer": [
  1902. {
  1903. "id": "gitlens.gitExplorer",
  1904. "name": "GitLens",
  1905. "when": "gitlens:enabled && config.gitlens.gitExplorer.enabled"
  1906. }
  1907. ]
  1908. }
  1909. },
  1910. "activationEvents": [
  1911. "*"
  1912. ],
  1913. "scripts": {
  1914. "clean": "git clean -xdf",
  1915. "compile": "tslint --project tslint.json && tsc -p ./",
  1916. "watch": "tsc -watch -p ./",
  1917. "lint": "tslint --project tslint.json",
  1918. "pack": "git clean -xdf && vsce package",
  1919. "postinstall": "node ./node_modules/vscode/bin/install",
  1920. "pub": "git clean -xdf && vsce publish",
  1921. "reset": "git clean -xdf && npm install",
  1922. "vscode:prepublish": "npm install --no-save && npm run compile"
  1923. },
  1924. "dependencies": {
  1925. "applicationinsights": "0.21.0",
  1926. "copy-paste": "1.3.0",
  1927. "iconv-lite": "0.4.19",
  1928. "ignore": "3.3.5",
  1929. "lodash.debounce": "4.0.8",
  1930. "lodash.escaperegexp": "4.1.2",
  1931. "lodash.isequal": "4.5.0",
  1932. "lodash.once": "4.1.1",
  1933. "moment": "2.18.1",
  1934. "spawn-rx": "2.0.11",
  1935. "tmp": "0.0.33"
  1936. },
  1937. "devDependencies": {
  1938. "@types/copy-paste": "1.1.30",
  1939. "@types/iconv-lite": "0.0.1",
  1940. "@types/mocha": "2.2.43",
  1941. "@types/node": "8.0.28",
  1942. "@types/tmp": "0.0.33",
  1943. "mocha": "3.5.2",
  1944. "tslint": "5.7.0",
  1945. "typescript": "2.5.2",
  1946. "vscode": "1.1.5"
  1947. }
  1948. }