Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1341 строка
64 KiB

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