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.

1344 lines
62 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {
  2. "name": "gitlens",
  3. "version": "4.1.0-beta",
  4. "author": {
  5. "name": "Eric Amodio",
  6. "email": "eamodio@gmail.com"
  7. },
  8. "publisher": "eamodio",
  9. "engines": {
  10. "vscode": "^1.12.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 comparision commands, and so much more",
  15. "badges": [
  16. {
  17. "url": "https://badges.gitter.im/vscode-gitlens/Lobby.svg",
  18. "href": "https://gitter.im/vscode-gitlens/Lobby",
  19. "description": "Chat at https://gitter.im/vscode-gitlens/Lobby"
  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.svg",
  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.file.recentChanges.hover.wholeLine": {
  136. "type": "boolean",
  137. "default": true,
  138. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  139. },
  140. "gitlens.annotations.line.hover.details": {
  141. "type": "boolean",
  142. "default": true,
  143. "description": "Specifies whether or not to provide a commit details hover annotation for the current line"
  144. },
  145. "gitlens.annotations.line.hover.changes": {
  146. "type": "boolean",
  147. "default": true,
  148. "description": "Specifies whether or not to provide a changes (diff) hover annotation for the current line"
  149. },
  150. "gitlens.annotations.line.trailing.format": {
  151. "type": "string",
  152. "default": "${authorAgo} \u2022 ${message}",
  153. "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"
  154. },
  155. "gitlens.annotations.line.trailing.dateFormat": {
  156. "type": "string",
  157. "default": null,
  158. "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"
  159. },
  160. "gitlens.annotations.line.trailing.hover.details": {
  161. "type": "boolean",
  162. "default": true,
  163. "description": "Specifies whether or not to provide a commit details hover annotation over the trailing blame annotations"
  164. },
  165. "gitlens.annotations.line.trailing.hover.changes": {
  166. "type": "boolean",
  167. "default": true,
  168. "description": "Specifies whether or not to provide a changes (diff) hover annotation over the trailing blame annotations"
  169. },
  170. "gitlens.annotations.line.trailing.hover.wholeLine": {
  171. "type": "boolean",
  172. "default": false,
  173. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  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"
  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"
  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. "items": {
  357. "type": "object",
  358. "required": [
  359. "language",
  360. "locations"
  361. ],
  362. "properties": {
  363. "language": {
  364. "type": "string",
  365. "description": "Specifies the language to which this code lens override applies"
  366. },
  367. "locations": {
  368. "type": "array",
  369. "default": [
  370. "document",
  371. "containers"
  372. ],
  373. "items": {
  374. "type": "string",
  375. "enum": [
  376. "document",
  377. "containers",
  378. "blocks",
  379. "custom"
  380. ]
  381. },
  382. "minItems": 1,
  383. "maxItems": 4,
  384. "uniqueItems": true,
  385. "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`"
  386. },
  387. "customSymbols": {
  388. "type": "array",
  389. "items": {
  390. "type": "string"
  391. },
  392. "uniqueItems": true,
  393. "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`"
  394. }
  395. }
  396. },
  397. "uniqueItems": true,
  398. "description": "Specifies where Git code lens will be shown in the document for the specified languages"
  399. },
  400. "gitlens.codeLens.debug": {
  401. "type": "boolean",
  402. "default": false,
  403. "description": "Specifies whether or not to show debug information in code lens"
  404. },
  405. "gitlens.statusBar.enabled": {
  406. "type": "boolean",
  407. "default": true,
  408. "description": "Specifies whether or not to provide blame information on the status bar"
  409. },
  410. "gitlens.statusBar.alignment": {
  411. "type": "string",
  412. "default": "right",
  413. "enum": [
  414. "left",
  415. "right"
  416. ],
  417. "description": "Specifies the blame alignment in the status bar\n `left` - align to the left\n `right` - align to the right"
  418. },
  419. "gitlens.statusBar.command": {
  420. "type": "string",
  421. "default": "gitlens.showQuickCommitDetails",
  422. "enum": [
  423. "gitlens.toggleFileBlame",
  424. "gitlens.showBlameHistory",
  425. "gitlens.showFileHistory",
  426. "gitlens.diffWithPrevious",
  427. "gitlens.diffWithWorking",
  428. "gitlens.toggleCodeLens",
  429. "gitlens.showQuickCommitDetails",
  430. "gitlens.showQuickCommitFileDetails",
  431. "gitlens.showQuickFileHistory",
  432. "gitlens.showQuickRepoHistory"
  433. ],
  434. "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"
  435. },
  436. "gitlens.statusBar.format": {
  437. "type": "string",
  438. "default": "${authorAgo}",
  439. "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"
  440. },
  441. "gitlens.statusBar.dateFormat": {
  442. "type": "string",
  443. "default": null,
  444. "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"
  445. },
  446. "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
  447. "type": "string",
  448. "default": "Cannot determine recent change or authors (unsaved changes)",
  449. "description": "Specifies the string to be shown in place of both the `recent change` and `authors` code lens when there are unsaved changes"
  450. },
  451. "gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
  452. "type": "string",
  453. "default": "Cannot determine recent change (unsaved changes)",
  454. "description": "Specifies the string to be shown in place of the `recent change` code lens when there are unsaved changes"
  455. },
  456. "gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
  457. "type": "string",
  458. "default": "Cannot determine authors (unsaved changes)",
  459. "description": "Specifies the string to be shown in place of the `authors` code lens when there are unsaved changes"
  460. },
  461. "gitlens.theme.annotations.file.gutter.separateLines": {
  462. "type": "boolean",
  463. "default": true,
  464. "description": "Specifies whether or not gutter blame annotations will be separated by a small gap"
  465. },
  466. "gitlens.theme.annotations.file.gutter.dark.backgroundColor": {
  467. "type": "string",
  468. "default": "rgba(255, 255, 255, 0.075)",
  469. "description": "Specifies the dark theme background color of the gutter blame annotations. Must be a valid css color"
  470. },
  471. "gitlens.theme.annotations.file.gutter.light.backgroundColor": {
  472. "type": "string",
  473. "default": "rgba(0, 0, 0, 0.05)",
  474. "description": "Specifies the light theme background color of the gutter blame annotations. Must be a valid css color"
  475. },
  476. "gitlens.theme.annotations.file.gutter.dark.foregroundColor": {
  477. "type": "string",
  478. "default": "rgb(190, 190, 190)",
  479. "description": "Specifies the dark theme foreground color of the gutter blame annotations. Must be a valid css color"
  480. },
  481. "gitlens.theme.annotations.file.gutter.light.foregroundColor": {
  482. "type": "string",
  483. "default": "rgb(116, 116, 116)",
  484. "description": "Specifies the light theme foreground color of the gutter blame annotations. Must be a valid css color"
  485. },
  486. "gitlens.theme.annotations.file.gutter.dark.uncommittedForegroundColor": {
  487. "type": "string",
  488. "default": "rgba(0, 188, 242, 0.6)",
  489. "description": "Specifies the dark theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  490. },
  491. "gitlens.theme.annotations.file.gutter.light.uncommittedForegroundColor": {
  492. "type": "string",
  493. "default": "rgba(0, 188, 242, 0.6)",
  494. "description": "Specifies the light theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  495. },
  496. "gitlens.theme.annotations.file.hover.separateLines": {
  497. "type": "boolean",
  498. "default": false,
  499. "description": "Specifies whether or not hover blame annotations will be separated by a small gap (if heatmap is enabled)"
  500. },
  501. "gitlens.theme.annotations.line.trailing.dark.backgroundColor": {
  502. "type": "string",
  503. "default": null,
  504. "description": "Specifies the dark theme background color of the trailing blame annotation. Must be a valid css color"
  505. },
  506. "gitlens.theme.annotations.line.trailing.light.backgroundColor": {
  507. "type": "string",
  508. "default": null,
  509. "description": "Specifies the light theme background color of the trailing blame annotation. Must be a valid css color"
  510. },
  511. "gitlens.theme.annotations.line.trailing.dark.foregroundColor": {
  512. "type": "string",
  513. "default": "rgba(153, 153, 153, 0.35)",
  514. "description": "Specifies the dark theme foreground color of the trailing blame annotation. Must be a valid css color"
  515. },
  516. "gitlens.theme.annotations.line.trailing.light.foregroundColor": {
  517. "type": "string",
  518. "default": "rgba(153, 153, 153, 0.35)",
  519. "description": "Specifies the light theme foreground color of the trailing blame annotation. Must be a valid css color"
  520. },
  521. "gitlens.theme.lineHighlight.dark.backgroundColor": {
  522. "type": "string",
  523. "default": "rgba(0, 188, 242, 0.2)",
  524. "description": "Specifies the dark theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  525. },
  526. "gitlens.theme.lineHighlight.light.backgroundColor": {
  527. "type": "string",
  528. "default": "rgba(0, 188, 242, 0.2)",
  529. "description": "Specifies the light theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  530. },
  531. "gitlens.theme.lineHighlight.dark.overviewRulerColor": {
  532. "type": "string",
  533. "default": "rgba(0, 188, 242, 0.6)",
  534. "description": "Specifies the dark theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  535. },
  536. "gitlens.theme.lineHighlight.light.overviewRulerColor": {
  537. "type": "string",
  538. "default": "rgba(0, 188, 242, 0.6)",
  539. "description": "Specifies the light theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  540. },
  541. "gitlens.advanced.caching.enabled": {
  542. "type": "boolean",
  543. "default": true,
  544. "description": "Specifies whether git output will be cached"
  545. },
  546. "gitlens.advanced.caching.maxLines": {
  547. "type": "number",
  548. "default": 0,
  549. "description": "Specifies the threshold for caching larger documents"
  550. },
  551. "gitlens.advanced.git": {
  552. "type": "string",
  553. "default": null,
  554. "description": "Specifies the git path to use"
  555. },
  556. "gitlens.advanced.gitignore.enabled": {
  557. "type": "boolean",
  558. "default": true,
  559. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  560. },
  561. "gitlens.advanced.maxQuickHistory": {
  562. "type": "number",
  563. "default": 200,
  564. "description": "Specifies the maximum number of QuickPick history entries to show"
  565. },
  566. "gitlens.advanced.menus": {
  567. "type": "object",
  568. "default": {
  569. "editorContext": {
  570. "blame": true,
  571. "copy": true,
  572. "details": true,
  573. "fileDiff": true,
  574. "history": true,
  575. "lineDiff": true,
  576. "remote": true
  577. },
  578. "editorTitle": {
  579. "blame": true,
  580. "fileDiff": true,
  581. "history": true,
  582. "remote": true,
  583. "status": true
  584. },
  585. "editorTitleContext": {
  586. "blame": true,
  587. "fileDiff": true,
  588. "history": true,
  589. "remote": true
  590. },
  591. "explorerContext": {
  592. "fileDiff": true,
  593. "history": true,
  594. "remote": true
  595. }
  596. },
  597. "description": "Specifies which commands will be added to which menus",
  598. "properties": {
  599. "editorContext": {
  600. "type": "object",
  601. "default": {
  602. "blame": true,
  603. "copy": true,
  604. "details": true,
  605. "fileDiff": true,
  606. "history": true,
  607. "lineDiff": true,
  608. "remote": true
  609. },
  610. "properties": {
  611. "blame": {
  612. "type": "boolean",
  613. "default": true
  614. },
  615. "copy": {
  616. "type": "boolean",
  617. "default": true
  618. },
  619. "details": {
  620. "type": "boolean",
  621. "default": true
  622. },
  623. "fileDiff": {
  624. "type": "boolean",
  625. "default": true
  626. },
  627. "history": {
  628. "type": "boolean",
  629. "default": true
  630. },
  631. "lineDiff": {
  632. "type": "boolean",
  633. "default": true
  634. },
  635. "remote": {
  636. "type": "boolean",
  637. "default": true
  638. }
  639. }
  640. },
  641. "editorTitle": {
  642. "type": "object",
  643. "default": {
  644. "blame": true,
  645. "fileDiff": true,
  646. "history": true,
  647. "remote": true,
  648. "status": true
  649. },
  650. "properties": {
  651. "blame": {
  652. "type": "boolean",
  653. "default": true
  654. },
  655. "fileDiff": {
  656. "type": "boolean",
  657. "default": true
  658. },
  659. "history": {
  660. "type": "boolean",
  661. "default": true
  662. },
  663. "remote": {
  664. "type": "boolean",
  665. "default": true
  666. },
  667. "status": {
  668. "type": "boolean",
  669. "default": true
  670. }
  671. }
  672. },
  673. "editorTitleContext": {
  674. "type": "object",
  675. "default": {
  676. "blame": true,
  677. "fileDiff": true,
  678. "history": true,
  679. "remote": true
  680. },
  681. "properties": {
  682. "blame": {
  683. "type": "boolean",
  684. "default": true
  685. },
  686. "fileDiff": {
  687. "type": "boolean",
  688. "default": true
  689. },
  690. "history": {
  691. "type": "boolean",
  692. "default": true
  693. },
  694. "remote": {
  695. "type": "boolean",
  696. "default": true
  697. }
  698. }
  699. },
  700. "explorerContext": {
  701. "type": "object",
  702. "default": {
  703. "fileDiff": true,
  704. "history": true,
  705. "remote": true
  706. },
  707. "properties": {
  708. "fileDiff": {
  709. "type": "boolean",
  710. "default": true
  711. },
  712. "history": {
  713. "type": "boolean",
  714. "default": true
  715. },
  716. "remote": {
  717. "type": "boolean",
  718. "default": true
  719. }
  720. }
  721. }
  722. }
  723. },
  724. "gitlens.advanced.quickPick.closeOnFocusOut": {
  725. "type": "boolean",
  726. "default": true,
  727. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  728. },
  729. "gitlens.advanced.telemetry.enabled": {
  730. "type": "boolean",
  731. "default": true,
  732. "description": "Specifies whether or not to enable GitLens telemetry (even if enabled still abides by the overall `telemetry.enableTelemetry` setting"
  733. },
  734. "gitlens.advanced.toggleWhitespace.enabled": {
  735. "type": "boolean",
  736. "default": true,
  737. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  738. }
  739. }
  740. },
  741. "commands": [
  742. {
  743. "command": "gitlens.diffDirectory",
  744. "title": "Directory Compare",
  745. "category": "GitLens"
  746. },
  747. {
  748. "command": "gitlens.diffWithBranch",
  749. "title": "Compare File with...",
  750. "category": "GitLens"
  751. },
  752. {
  753. "command": "gitlens.diffWithNext",
  754. "title": "Compare File with Next Commit",
  755. "category": "GitLens"
  756. },
  757. {
  758. "command": "gitlens.diffWithPrevious",
  759. "title": "Compare File with Previous",
  760. "category": "GitLens"
  761. },
  762. {
  763. "command": "gitlens.diffLineWithPrevious",
  764. "title": "Compare Line Commit with Previous",
  765. "category": "GitLens"
  766. },
  767. {
  768. "command": "gitlens.diffWithWorking",
  769. "title": "Compare File with Working Tree",
  770. "category": "GitLens"
  771. },
  772. {
  773. "command": "gitlens.diffLineWithWorking",
  774. "title": "Compare Line Commit with Working Tree",
  775. "category": "GitLens"
  776. },
  777. {
  778. "command": "gitlens.showFileBlame",
  779. "title": "Show File Blame Annotations",
  780. "category": "GitLens"
  781. },
  782. {
  783. "command": "gitlens.showLineBlame",
  784. "title": "Show Line Blame Annotations",
  785. "category": "GitLens"
  786. },
  787. {
  788. "command": "gitlens.toggleFileBlame",
  789. "title": "Toggle File Blame Annotations",
  790. "category": "GitLens",
  791. "icon": {
  792. "dark": "images/git-icon-dark.svg",
  793. "light": "images/git-icon-light.svg"
  794. }
  795. },
  796. {
  797. "command": "gitlens.toggleFileRecentChanges",
  798. "title": "Toggle Recent File Changes Annotations",
  799. "category": "GitLens"
  800. },
  801. {
  802. "command": "gitlens.toggleLineBlame",
  803. "title": "Toggle Line Blame Annotations",
  804. "category": "GitLens"
  805. },
  806. {
  807. "command": "gitlens.toggleCodeLens",
  808. "title": "Toggle Git Code Lens",
  809. "category": "GitLens"
  810. },
  811. {
  812. "command": "gitlens.showBlameHistory",
  813. "title": "Open Blame History Explorer",
  814. "category": "GitLens"
  815. },
  816. {
  817. "command": "gitlens.showCommitSearch",
  818. "title": "Search Commits",
  819. "category": "GitLens"
  820. },
  821. {
  822. "command": "gitlens.showFileHistory",
  823. "title": "Open File History Explorer",
  824. "category": "GitLens"
  825. },
  826. {
  827. "command": "gitlens.showLastQuickPick",
  828. "title": "Show Last Opened Quick Pick",
  829. "category": "GitLens"
  830. },
  831. {
  832. "command": "gitlens.showQuickCommitDetails",
  833. "title": "Show Commit Details",
  834. "category": "GitLens"
  835. },
  836. {
  837. "command": "gitlens.showQuickCommitFileDetails",
  838. "title": "Show Line Commit Details",
  839. "category": "GitLens"
  840. },
  841. {
  842. "command": "gitlens.showQuickFileHistory",
  843. "title": "Show File History",
  844. "category": "GitLens"
  845. },
  846. {
  847. "command": "gitlens.showQuickBranchHistory",
  848. "title": "Show Branch History",
  849. "category": "GitLens"
  850. },
  851. {
  852. "command": "gitlens.showQuickRepoHistory",
  853. "title": "Show Current Branch History",
  854. "category": "GitLens"
  855. },
  856. {
  857. "command": "gitlens.showQuickRepoStatus",
  858. "title": "Show Repository Status",
  859. "category": "GitLens"
  860. },
  861. {
  862. "command": "gitlens.showQuickStashList",
  863. "title": "Show Stashed Changes",
  864. "category": "GitLens"
  865. },
  866. {
  867. "command": "gitlens.copyShaToClipboard",
  868. "title": "Copy Commit ID to Clipboard",
  869. "category": "GitLens"
  870. },
  871. {
  872. "command": "gitlens.copyMessageToClipboard",
  873. "title": "Copy Commit Message to Clipboard",
  874. "category": "GitLens"
  875. },
  876. {
  877. "command": "gitlens.closeUnchangedFiles",
  878. "title": "Close Unchanged Files",
  879. "category": "GitLens"
  880. },
  881. {
  882. "command": "gitlens.openChangedFiles",
  883. "title": "Open Changed Files",
  884. "category": "GitLens"
  885. },
  886. {
  887. "command": "gitlens.openBranchInRemote",
  888. "title": "Open Branch in Remote",
  889. "category": "GitLens"
  890. },
  891. {
  892. "command": "gitlens.openCommitInRemote",
  893. "title": "Open Line Commit in Remote",
  894. "category": "GitLens"
  895. },
  896. {
  897. "command": "gitlens.openFileInRemote",
  898. "title": "Open File in Remote",
  899. "category": "GitLens"
  900. },
  901. {
  902. "command": "gitlens.openRepoInRemote",
  903. "title": "Open Repository in Remote",
  904. "category": "GitLens"
  905. },
  906. {
  907. "command": "gitlens.stashApply",
  908. "title": "Apply Stashed Changes",
  909. "category": "GitLens"
  910. },
  911. {
  912. "command": "gitlens.stashSave",
  913. "title": "Stash Changes",
  914. "category": "GitLens"
  915. },
  916. {
  917. "command": "gitlens.resetSuppressedWarnings",
  918. "title": "Reset Suppressed Warnings",
  919. "category": "GitLens"
  920. }
  921. ],
  922. "menus": {
  923. "commandPalette": [
  924. {
  925. "command": "gitlens.diffDirectory",
  926. "when": "gitlens:enabled"
  927. },
  928. {
  929. "command": "gitlens.diffWithBranch",
  930. "when": "gitlens:isTracked"
  931. },
  932. {
  933. "command": "gitlens.diffWithNext",
  934. "when": "gitlens:isTracked"
  935. },
  936. {
  937. "command": "gitlens.diffWithPrevious",
  938. "when": "gitlens:isTracked"
  939. },
  940. {
  941. "command": "gitlens.diffLineWithPrevious",
  942. "when": "gitlens:isBlameable"
  943. },
  944. {
  945. "command": "gitlens.diffWithWorking",
  946. "when": "gitlens:isTracked"
  947. },
  948. {
  949. "command": "gitlens.diffLineWithWorking",
  950. "when": "gitlens:isBlameable"
  951. },
  952. {
  953. "command": "gitlens.showFileBlame",
  954. "when": "gitlens:isBlameable"
  955. },
  956. {
  957. "command": "gitlens.showLineBlame",
  958. "when": "gitlens:isBlameable"
  959. },
  960. {
  961. "command": "gitlens.toggleFileBlame",
  962. "when": "gitlens:isBlameable"
  963. },
  964. {
  965. "command": "gitlens.toggleFileRecentChanges",
  966. "when": "gitlens:isTracked"
  967. },
  968. {
  969. "command": "gitlens.toggleLineBlame",
  970. "when": "gitlens:isBlameable"
  971. },
  972. {
  973. "command": "gitlens.toggleCodeLens",
  974. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  975. },
  976. {
  977. "command": "gitlens.showBlameHistory",
  978. "when": "gitlens:isBlameable"
  979. },
  980. {
  981. "command": "gitlens.showFileHistory",
  982. "when": "gitlens:isTracked"
  983. },
  984. {
  985. "command": "gitlens.showLastQuickPick",
  986. "when": "gitlens:enabled"
  987. },
  988. {
  989. "command": "gitlens.showQuickCommitDetails",
  990. "when": "gitlens:isBlameable"
  991. },
  992. {
  993. "command": "gitlens.showQuickCommitFileDetails",
  994. "when": "gitlens:isBlameable"
  995. },
  996. {
  997. "command": "gitlens.showQuickFileHistory",
  998. "when": "gitlens:isTracked"
  999. },
  1000. {
  1001. "command": "gitlens.showQuickBranchHistory",
  1002. "when": "gitlens:enabled"
  1003. },
  1004. {
  1005. "command": "gitlens.showQuickRepoHistory",
  1006. "when": "gitlens:enabled"
  1007. },
  1008. {
  1009. "command": "gitlens.showQuickRepoStatus",
  1010. "when": "gitlens:enabled"
  1011. },
  1012. {
  1013. "command": "gitlens.showQuickStashList",
  1014. "when": "gitlens:enabled"
  1015. },
  1016. {
  1017. "command": "gitlens.copyShaToClipboard",
  1018. "when": "gitlens:isBlameable"
  1019. },
  1020. {
  1021. "command": "gitlens.copyMessageToClipboard",
  1022. "when": "gitlens:isBlameable"
  1023. },
  1024. {
  1025. "command": "gitlens.closeUnchangedFiles",
  1026. "when": "gitlens:enabled"
  1027. },
  1028. {
  1029. "command": "gitlens.openChangedFiles",
  1030. "when": "gitlens:enabled"
  1031. },
  1032. {
  1033. "command": "gitlens.openBranchInRemote",
  1034. "when": "gitlens:hasRemotes"
  1035. },
  1036. {
  1037. "command": "gitlens.openCommitInRemote",
  1038. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  1039. },
  1040. {
  1041. "command": "gitlens.openFileInRemote",
  1042. "when": "gitlens:isTracked && gitlens:hasRemotes"
  1043. },
  1044. {
  1045. "command": "gitlens.openRepoInRemote",
  1046. "when": "gitlens:hasRemotes"
  1047. },
  1048. {
  1049. "command": "gitlens.stashApply",
  1050. "when": "gitlens:enabled"
  1051. },
  1052. {
  1053. "command": "gitlens.stashSave",
  1054. "when": "gitlens:enabled"
  1055. },
  1056. {
  1057. "command": "gitlens.resetSuppressedWarnings",
  1058. "when": "gitlens:enabled"
  1059. }
  1060. ],
  1061. "editor/context": [
  1062. {
  1063. "command": "gitlens.openFileInRemote",
  1064. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1065. "group": "navigation@100"
  1066. },
  1067. {
  1068. "command": "gitlens.diffLineWithPrevious",
  1069. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1070. "group": "1_gitlens@1"
  1071. },
  1072. {
  1073. "command": "gitlens.diffLineWithWorking",
  1074. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1075. "group": "1_gitlens@2"
  1076. },
  1077. {
  1078. "command": "gitlens.showQuickCommitFileDetails",
  1079. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1080. "group": "1_gitlens@3"
  1081. },
  1082. {
  1083. "command": "gitlens.diffWithPrevious",
  1084. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1085. "group": "1_gitlens_1@1"
  1086. },
  1087. {
  1088. "command": "gitlens.diffWithWorking",
  1089. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1090. "group": "1_gitlens_1@2"
  1091. },
  1092. {
  1093. "command": "gitlens.showQuickFileHistory",
  1094. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1095. "group": "3_gitlens@1"
  1096. },
  1097. {
  1098. "command": "gitlens.toggleFileBlame",
  1099. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1100. "group": "3_gitlens@2"
  1101. },
  1102. {
  1103. "command": "gitlens.copyShaToClipboard",
  1104. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1105. "group": "9_gitlens@1"
  1106. },
  1107. {
  1108. "command": "gitlens.copyMessageToClipboard",
  1109. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1110. "group": "9_gitlens@2"
  1111. }
  1112. ],
  1113. "editor/title": [
  1114. {
  1115. "command": "gitlens.toggleFileBlame",
  1116. "when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
  1117. "group": "navigation@100"
  1118. },
  1119. {
  1120. "command": "gitlens.openFileInRemote",
  1121. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1122. "group": "1_gitlens"
  1123. },
  1124. {
  1125. "command": "gitlens.openRepoInRemote",
  1126. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1127. "group": "1_gitlens"
  1128. },
  1129. {
  1130. "command": "gitlens.diffWithPrevious",
  1131. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1132. "group": "2_gitlens"
  1133. },
  1134. {
  1135. "command": "gitlens.diffWithWorking",
  1136. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1137. "group": "2_gitlens"
  1138. },
  1139. {
  1140. "command": "gitlens.showQuickFileHistory",
  1141. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1142. "group": "2_gitlens_1"
  1143. },
  1144. {
  1145. "command": "gitlens.showQuickRepoHistory",
  1146. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1147. "group": "2_gitlens_1"
  1148. },
  1149. {
  1150. "command": "gitlens.showQuickRepoStatus",
  1151. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1152. "group": "2_gitlens_1"
  1153. }
  1154. ],
  1155. "editor/title/context": [
  1156. {
  1157. "command": "gitlens.openFileInRemote",
  1158. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1159. "group": "1_gitlens"
  1160. },
  1161. {
  1162. "command": "gitlens.diffWithPrevious",
  1163. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1164. "group": "1_gitlens_1@1"
  1165. },
  1166. {
  1167. "command": "gitlens.diffWithWorking",
  1168. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1169. "group": "1_gitlens_1@2"
  1170. },
  1171. {
  1172. "command": "gitlens.showQuickFileHistory",
  1173. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1174. "group": "1_gitlens_2@1"
  1175. },
  1176. {
  1177. "command": "gitlens.toggleFileBlame",
  1178. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1179. "group": "1_gitlens_2@2"
  1180. }
  1181. ],
  1182. "explorer/context": [
  1183. {
  1184. "command": "gitlens.openFileInRemote",
  1185. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.remote",
  1186. "group": "navigation@100"
  1187. },
  1188. {
  1189. "command": "gitlens.diffWithPrevious",
  1190. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1191. "group": "1_gitlens@1"
  1192. },
  1193. {
  1194. "command": "gitlens.diffWithWorking",
  1195. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  1196. "group": "1_gitlens@2"
  1197. },
  1198. {
  1199. "command": "gitlens.showQuickFileHistory",
  1200. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  1201. "group": "1_gitlens_1@1"
  1202. }
  1203. ]
  1204. },
  1205. "keybindings": [
  1206. {
  1207. "command": "gitlens.key.left",
  1208. "key": "alt+left",
  1209. "when": "gitlens:key:left"
  1210. },
  1211. {
  1212. "command": "gitlens.key.right",
  1213. "key": "alt+right",
  1214. "when": "gitlens:key:right"
  1215. },
  1216. {
  1217. "command": "gitlens.key.,",
  1218. "key": "alt+,",
  1219. "when": "gitlens:key:,"
  1220. },
  1221. {
  1222. "command": "gitlens.key..",
  1223. "key": "alt+.",
  1224. "when": "gitlens:key:."
  1225. },
  1226. {
  1227. "command": "gitlens.toggleFileBlame",
  1228. "key": "alt+b",
  1229. "mac": "alt+b",
  1230. "when": "editorTextFocus && gitlens:isTracked"
  1231. },
  1232. {
  1233. "command": "gitlens.toggleCodeLens",
  1234. "key": "shift+alt+b",
  1235. "mac": "shift+alt+b",
  1236. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1237. },
  1238. {
  1239. "command": "gitlens.showLastQuickPick",
  1240. "key": "alt+-",
  1241. "mac": "alt+-",
  1242. "when": "gitlens:enabled"
  1243. },
  1244. {
  1245. "command": "gitlens.showCommitSearch",
  1246. "key": "alt+/",
  1247. "mac": "alt+/",
  1248. "when": "gitlens:enabled"
  1249. },
  1250. {
  1251. "command": "gitlens.showQuickFileHistory",
  1252. "key": "alt+h",
  1253. "mac": "alt+h",
  1254. "when": "gitlens:enabled"
  1255. },
  1256. {
  1257. "command": "gitlens.showQuickRepoHistory",
  1258. "key": "shift+alt+h",
  1259. "mac": "shift+alt+h",
  1260. "when": "gitlens:enabled"
  1261. },
  1262. {
  1263. "command": "gitlens.showQuickRepoStatus",
  1264. "key": "alt+s",
  1265. "mac": "alt+s",
  1266. "when": "gitlens:enabled"
  1267. },
  1268. {
  1269. "command": "gitlens.showQuickCommitFileDetails",
  1270. "key": "alt+c",
  1271. "mac": "alt+c",
  1272. "when": "editorTextFocus && gitlens:enabled"
  1273. },
  1274. {
  1275. "command": "gitlens.diffWithNext",
  1276. "key": "alt+.",
  1277. "mac": "alt+.",
  1278. "when": "editorTextFocus && gitlens:isTracked"
  1279. },
  1280. {
  1281. "command": "gitlens.diffLineWithPrevious",
  1282. "key": "shift+alt+,",
  1283. "mac": "shift+alt+,",
  1284. "when": "editorTextFocus && gitlens:isTracked"
  1285. },
  1286. {
  1287. "command": "gitlens.diffWithPrevious",
  1288. "key": "alt+,",
  1289. "mac": "alt+,",
  1290. "when": "editorTextFocus && gitlens:isTracked"
  1291. },
  1292. {
  1293. "command": "gitlens.diffLineWithWorking",
  1294. "key": "alt+w",
  1295. "mac": "alt+w",
  1296. "when": "editorTextFocus && gitlens:isTracked"
  1297. },
  1298. {
  1299. "command": "gitlens.diffWithWorking",
  1300. "key": "shift+alt+w",
  1301. "mac": "shift+alt+w",
  1302. "when": "editorTextFocus && gitlens:isTracked"
  1303. }
  1304. ]
  1305. },
  1306. "activationEvents": [
  1307. "*"
  1308. ],
  1309. "scripts": {
  1310. "clean": "git clean -xdf",
  1311. "compile": "tslint --project tslint.json && tsc -p ./",
  1312. "watch": "tsc -watch -p ./",
  1313. "lint": "tslint --project tslint.json",
  1314. "pack": "git clean -xdf && vsce package",
  1315. "postinstall": "node ./node_modules/vscode/bin/install",
  1316. "pub": "git clean -xdf && vsce publish",
  1317. "reset": "git clean -xdf && npm install",
  1318. "vscode:prepublish": "npm install --no-save && npm run compile"
  1319. },
  1320. "dependencies": {
  1321. "applicationinsights": "0.20.1",
  1322. "copy-paste": "1.3.0",
  1323. "iconv-lite": "0.4.17",
  1324. "ignore": "3.3.3",
  1325. "lodash.debounce": "4.0.8",
  1326. "lodash.escaperegexp": "4.1.2",
  1327. "lodash.isequal": "4.5.0",
  1328. "lodash.once": "4.1.1",
  1329. "moment": "2.18.1",
  1330. "spawn-rx": "2.0.11",
  1331. "tmp": "0.0.31"
  1332. },
  1333. "devDependencies": {
  1334. "@types/copy-paste": "1.1.30",
  1335. "@types/iconv-lite": "0.0.1",
  1336. "@types/mocha": "2.2.41",
  1337. "@types/node": "7.0.29",
  1338. "@types/tmp": "0.0.33",
  1339. "mocha": "3.4.2",
  1340. "tslint": "5.4.3",
  1341. "typescript": "2.3.4",
  1342. "vscode": "1.1.0"
  1343. }
  1344. }