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.

1263 lines
58 KiB

Major refactor/rework -- many new features and breaking changes Adds all-new, beautiful, highly customizable and themeable, file blame annotations Adds all-new configurability and themeability to the current line blame annotations Adds all-new configurability to the status bar blame information Adds all-new configurability over which commands are added to which menus via the `gitlens.advanced.menus` setting Adds better configurability over where Git code lens will be shown -- both by default and per language Adds an all-new `changes` (diff) hover annotation to the current line - provides instant access to the line's previous version Adds `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) - toggles the current line blame annotations on and off Adds `Show Line Blame Annotations` command (`gitlens.showLineBlame`) - shows the current line blame annotations Adds `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) - toggles the file blame annotations on and off Adds `Show File Blame Annotations` command (`gitlens.showFileBlame`) - shows the file blame annotations Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the `editor/title` context menu Adds `Open Repo in Remote` command (`gitlens.openRepoInRemote`) to the `editor/title` context menu Changes the position of the `Open File in Remote` command (`gitlens.openFileInRemote`) in the context menus - now in the `navigation` group Changes the `Toggle Git Code Lens` command (`gitlens.toggleCodeLens`) to always toggle the Git code lens on and off Removes the on-demand `trailing` file blame annotations -- didn't work out and just ended up with a ton of visual noise Removes `Toggle Blame Annotations` command (`gitlens.toggleBlame`) - replaced by the `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) Removes `Show Blame Annotations` command (`gitlens.showBlame`) - replaced by the `Show File Blame Annotations` command (`gitlens.showFileBlame`)
пре 7 година
пре 7 година
Major refactor/rework -- many new features and breaking changes Adds all-new, beautiful, highly customizable and themeable, file blame annotations Adds all-new configurability and themeability to the current line blame annotations Adds all-new configurability to the status bar blame information Adds all-new configurability over which commands are added to which menus via the `gitlens.advanced.menus` setting Adds better configurability over where Git code lens will be shown -- both by default and per language Adds an all-new `changes` (diff) hover annotation to the current line - provides instant access to the line's previous version Adds `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) - toggles the current line blame annotations on and off Adds `Show Line Blame Annotations` command (`gitlens.showLineBlame`) - shows the current line blame annotations Adds `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) - toggles the file blame annotations on and off Adds `Show File Blame Annotations` command (`gitlens.showFileBlame`) - shows the file blame annotations Adds `Open File in Remote` command (`gitlens.openFileInRemote`) to the `editor/title` context menu Adds `Open Repo in Remote` command (`gitlens.openRepoInRemote`) to the `editor/title` context menu Changes the position of the `Open File in Remote` command (`gitlens.openFileInRemote`) in the context menus - now in the `navigation` group Changes the `Toggle Git Code Lens` command (`gitlens.toggleCodeLens`) to always toggle the Git code lens on and off Removes the on-demand `trailing` file blame annotations -- didn't work out and just ended up with a ton of visual noise Removes `Toggle Blame Annotations` command (`gitlens.toggleBlame`) - replaced by the `Toggle File Blame Annotations` command (`gitlens.toggleFileBlame`) Removes `Show Blame Annotations` command (`gitlens.showBlame`) - replaced by the `Show File Blame Annotations` command (`gitlens.showFileBlame`)
пре 7 година
  1. {
  2. "name": "gitlens",
  3. "version": "4.0.0-alpha.2",
  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. Available tokens: `${id}` - commit id, `${author}` - commit author, `${message}` - commit message, `${ago}` - relative commit date (e.g. 1 day ago), `${date}` - formatted commit date (format specified by `gitlens.annotations.file.dateFormat`), `${authorAgo}` - commit author, relative commit date"
  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. See 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. `left` - adds a heatmap indicator on the left edge of the gutter blame annotations. `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.line.hover.details": {
  126. "type": "boolean",
  127. "default": true,
  128. "description": "Specifies whether or not to provide a commit details hover annotation for the current line"
  129. },
  130. "gitlens.annotations.line.hover.changes": {
  131. "type": "boolean",
  132. "default": true,
  133. "description": "Specifies whether or not to provide a changes (diff) hover annotation for the current line"
  134. },
  135. "gitlens.annotations.line.trailing.format": {
  136. "type": "string",
  137. "default": "${authorAgo} \u2022 ${message}",
  138. "description": "Specifies the format of the trailing blame annotations. Available tokens: `${id}` - commit id, `${author}` - commit author, `${message}` - commit message, `${ago}` - relative commit date (e.g. 1 day ago), `${date}` - formatted commit date (format specified by `gitlens.annotations.currentLine.dateFormat`), `${authorAgo}` - commit author, relative commit date"
  139. },
  140. "gitlens.annotations.line.trailing.dateFormat": {
  141. "type": "string",
  142. "default": null,
  143. "description": "Specifies how to format absolute dates (using the `${date}` token) in trailing blame annotations. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  144. },
  145. "gitlens.annotations.line.trailing.hover.details": {
  146. "type": "boolean",
  147. "default": true,
  148. "description": "Specifies whether or not to provide a commit details hover annotation over the trailing blame annotations"
  149. },
  150. "gitlens.annotations.line.trailing.hover.changes": {
  151. "type": "boolean",
  152. "default": true,
  153. "description": "Specifies whether or not to provide a changes (diff) hover annotation over the trailing blame annotations"
  154. },
  155. "gitlens.annotations.line.trailing.hover.wholeLine": {
  156. "type": "boolean",
  157. "default": false,
  158. "description": "Specifies whether or not to trigger hover annotations over the whole line"
  159. },
  160. "gitlens.blame.file.annotationType": {
  161. "type": "string",
  162. "default": "gutter",
  163. "enum": [
  164. "gutter",
  165. "hover"
  166. ],
  167. "description": "Specifies the type of blame annotations that will be shown for the current file. `gutter` - adds an annotation to the beginning of each line. `hover` - shows annotations when hovering over each line"
  168. },
  169. "gitlens.blame.file.lineHighlight.enabled": {
  170. "type": "boolean",
  171. "default": true,
  172. "description": "Specifies whether or not to highlight lines associated with the current line"
  173. },
  174. "gitlens.blame.file.lineHighlight.locations": {
  175. "type": "array",
  176. "default": [
  177. "gutter",
  178. "line",
  179. "overviewRuler"
  180. ],
  181. "items": {
  182. "type": "string",
  183. "enum": [
  184. "gutter",
  185. "line",
  186. "overviewRuler"
  187. ]
  188. },
  189. "minItems": 1,
  190. "maxItems": 3,
  191. "uniqueItems": true,
  192. "description": "Specifies where the associated line highlights will be shown. `gutter` - adds a gutter glyph. `line` - adds a full-line highlight background color. `overviewRuler` - adds a decoration to the overviewRuler (scroll bar)"
  193. },
  194. "gitlens.blame.line.enabled": {
  195. "type": "boolean",
  196. "default": true,
  197. "description": "Specifies whether or not to provide a blame annotation for the current line"
  198. },
  199. "gitlens.blame.line.annotationType": {
  200. "type": "string",
  201. "default": "trailing",
  202. "enum": [
  203. "trailing",
  204. "hover"
  205. ],
  206. "description": "Specifies the type of blame annotations that will be shown for the current line. `trailing` - adds an annotation to the end of the current line. `hover` - shows annotations when hovering over the current line"
  207. },
  208. "gitlens.codeLens.enabled": {
  209. "type": "boolean",
  210. "default": true,
  211. "description": "Specifies whether or not to provide any Git code lens"
  212. },
  213. "gitlens.codeLens.recentChange.enabled": {
  214. "type": "boolean",
  215. "default": true,
  216. "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"
  217. },
  218. "gitlens.codeLens.recentChange.command": {
  219. "type": "string",
  220. "default": "gitlens.showQuickCommitFileDetails",
  221. "enum": [
  222. "gitlens.toggleFileBlame",
  223. "gitlens.showBlameHistory",
  224. "gitlens.showFileHistory",
  225. "gitlens.diffWithPrevious",
  226. "gitlens.showQuickCommitDetails",
  227. "gitlens.showQuickCommitFileDetails",
  228. "gitlens.showQuickFileHistory",
  229. "gitlens.showQuickRepoHistory"
  230. ],
  231. "description": "Specifies the command to be executed when the `recent change` code lens is clicked. `gitlens.toggleFileBlame` - toggles file blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  232. },
  233. "gitlens.codeLens.authors.enabled": {
  234. "type": "boolean",
  235. "default": true,
  236. "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)"
  237. },
  238. "gitlens.codeLens.authors.command": {
  239. "type": "string",
  240. "default": "gitlens.toggleFileBlame",
  241. "enum": [
  242. "gitlens.toggleFileBlame",
  243. "gitlens.showBlameHistory",
  244. "gitlens.showFileHistory",
  245. "gitlens.diffWithPrevious",
  246. "gitlens.showQuickCommitDetails",
  247. "gitlens.showQuickCommitFileDetails",
  248. "gitlens.showQuickFileHistory",
  249. "gitlens.showQuickRepoHistory"
  250. ],
  251. "description": "Specifies the command to be executed when the `authors` code lens is clicked. `gitlens.toggleFileBlame` - toggles file blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  252. },
  253. "gitlens.codeLens.locations": {
  254. "type": "array",
  255. "default": [
  256. "document",
  257. "containers"
  258. ],
  259. "items": {
  260. "type": "string",
  261. "enum": [
  262. "document",
  263. "containers",
  264. "blocks",
  265. "custom"
  266. ]
  267. },
  268. "minItems": 1,
  269. "maxItems": 4,
  270. "uniqueItems": true,
  271. "description": "Specifies where Git code lens will be shown in the document. `document` - adds code lens at the top of the document. `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc). `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines. `custom` - adds code lens at the start of symbols contained in `gitlens.codeLens.locationCustomSymbols`"
  272. },
  273. "gitlens.codeLens.customLocationSymbols": {
  274. "type": "array",
  275. "items": {
  276. "type": "string"
  277. },
  278. "uniqueItems": true,
  279. "description": "Specifies the set of document symbols where Git code lens will be shown in the document. Must be a member of `SymbolKind`"
  280. },
  281. "gitlens.codeLens.perLanguageLocations": {
  282. "type": "array",
  283. "default": [
  284. {
  285. "language": "css",
  286. "locations": [
  287. "document"
  288. ]
  289. },
  290. {
  291. "language": "html",
  292. "locations": [
  293. "document"
  294. ]
  295. },
  296. {
  297. "language": "json",
  298. "locations": [
  299. "document"
  300. ]
  301. },
  302. {
  303. "language": "less",
  304. "locations": [
  305. "document"
  306. ]
  307. },
  308. {
  309. "language": "scss",
  310. "locations": [
  311. "document"
  312. ]
  313. },
  314. {
  315. "language": "vue",
  316. "locations": [
  317. "document"
  318. ]
  319. }
  320. ],
  321. "items": {
  322. "type": "object",
  323. "required": [
  324. "language",
  325. "locations"
  326. ],
  327. "properties": {
  328. "language": {
  329. "type": "string",
  330. "description": "Specifies the language to which this code lens override applies"
  331. },
  332. "locations": {
  333. "type": "array",
  334. "default": [
  335. "document",
  336. "containers"
  337. ],
  338. "items": {
  339. "type": "string",
  340. "enum": [
  341. "document",
  342. "containers",
  343. "blocks",
  344. "custom"
  345. ]
  346. },
  347. "minItems": 1,
  348. "maxItems": 4,
  349. "uniqueItems": true,
  350. "description": "Specifies where Git code lens will be shown in the document for the specified language. `document` - adds code lens at the top of the document. `containers` - adds code lens at the start of container-like symbols (modules, classes, interfaces, etc). `blocks` - adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines. `custom` - adds code lens at the start of symbols contained in `customSymbols`"
  351. },
  352. "customSymbols": {
  353. "type": "array",
  354. "items": {
  355. "type": "string"
  356. },
  357. "uniqueItems": true,
  358. "description": "Specifies the set of document symbols where Git code lens will be shown in the document for the specified language. Must be a member of `SymbolKind`"
  359. }
  360. }
  361. },
  362. "uniqueItems": true,
  363. "description": "Specifies where Git code lens will be shown in the document for the specified languages"
  364. },
  365. "gitlens.codeLens.debug": {
  366. "type": "boolean",
  367. "default": false,
  368. "description": "Specifies whether or not to show debug information in code lens"
  369. },
  370. "gitlens.statusBar.enabled": {
  371. "type": "boolean",
  372. "default": true,
  373. "description": "Specifies whether or not to provide blame information on the status bar"
  374. },
  375. "gitlens.statusBar.alignment": {
  376. "type": "string",
  377. "default": "right",
  378. "enum": [
  379. "left",
  380. "right"
  381. ],
  382. "description": "Specifies the blame alignment in the status bar. `left` - align to the left, `right` - align to the right"
  383. },
  384. "gitlens.statusBar.command": {
  385. "type": "string",
  386. "default": "gitlens.showQuickCommitDetails",
  387. "enum": [
  388. "gitlens.toggleFileBlame",
  389. "gitlens.showBlameHistory",
  390. "gitlens.showFileHistory",
  391. "gitlens.diffWithPrevious",
  392. "gitlens.diffWithWorking",
  393. "gitlens.toggleCodeLens",
  394. "gitlens.showQuickCommitDetails",
  395. "gitlens.showQuickCommitFileDetails",
  396. "gitlens.showQuickFileHistory",
  397. "gitlens.showQuickRepoHistory"
  398. ],
  399. "description": "Specifies the command to be executed when the blame status bar item is clicked. `gitlens.toggleFileBlame` - toggles file blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current line commit with the previous. `gitlens.diffWithWorking` - compares the current line commit with the working tree. `gitlens.toggleCodeLens` - toggles Git code lens. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickRepoHistory` - shows a branch history quick pick"
  400. },
  401. "gitlens.statusBar.format": {
  402. "type": "string",
  403. "default": "${authorAgo}",
  404. "description": "Specifies the format of the status bar blame information. Available tokens: `${id}` - commit id, `${author}` - commit author, `${message}` - commit message, `${ago}` - relative commit date (e.g. 1 day ago), `${date}` - formatted commit date (format specified by `gitlens.statusBar.dateFormat`), `${authorAgo}` - commit author, relative commit date"
  405. },
  406. "gitlens.statusBar.dateFormat": {
  407. "type": "string",
  408. "default": null,
  409. "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"
  410. },
  411. "gitlens.theme.annotations.file.gutter.separateLines": {
  412. "type": "boolean",
  413. "default": true,
  414. "description": "Specifies whether or not gutter blame annotations will be separated by a small gap"
  415. },
  416. "gitlens.theme.annotations.file.gutter.dark.backgroundColor": {
  417. "type": "string",
  418. "default": "rgba(255, 255, 255, 0.075)",
  419. "description": "Specifies the dark theme background color of the gutter blame annotations. Must be a valid css color"
  420. },
  421. "gitlens.theme.annotations.file.gutter.light.backgroundColor": {
  422. "type": "string",
  423. "default": "rgba(0, 0, 0, 0.05)",
  424. "description": "Specifies the light theme background color of the gutter blame annotations. Must be a valid css color"
  425. },
  426. "gitlens.theme.annotations.file.gutter.dark.foregroundColor": {
  427. "type": "string",
  428. "default": "rgb(190, 190, 190)",
  429. "description": "Specifies the dark theme foreground color of the gutter blame annotations. Must be a valid css color"
  430. },
  431. "gitlens.theme.annotations.file.gutter.light.foregroundColor": {
  432. "type": "string",
  433. "default": "rgb(116, 116, 116)",
  434. "description": "Specifies the light theme foreground color of the gutter blame annotations. Must be a valid css color"
  435. },
  436. "gitlens.theme.annotations.file.gutter.dark.uncommittedForegroundColor": {
  437. "type": "string",
  438. "default": "rgba(0, 188, 242, 0.6)",
  439. "description": "Specifies the dark theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  440. },
  441. "gitlens.theme.annotations.file.gutter.light.uncommittedForegroundColor": {
  442. "type": "string",
  443. "default": "rgba(0, 188, 242, 0.6)",
  444. "description": "Specifies the light theme foreground color of an uncommitted line in the gutter blame annotations. Must be a valid css color"
  445. },
  446. "gitlens.theme.annotations.file.hover.separateLines": {
  447. "type": "boolean",
  448. "default": false,
  449. "description": "Specifies whether or not hover blame annotations will be separated by a small gap (if heatmap is enabled)"
  450. },
  451. "gitlens.theme.annotations.line.trailing.dark.backgroundColor": {
  452. "type": "string",
  453. "default": null,
  454. "description": "Specifies the dark theme background color of the trailing blame annotation. Must be a valid css color"
  455. },
  456. "gitlens.theme.annotations.line.trailing.light.backgroundColor": {
  457. "type": "string",
  458. "default": null,
  459. "description": "Specifies the light theme background color of the trailing blame annotation. Must be a valid css color"
  460. },
  461. "gitlens.theme.annotations.line.trailing.dark.foregroundColor": {
  462. "type": "string",
  463. "default": "rgba(153, 153, 153, 0.35)",
  464. "description": "Specifies the dark theme foreground color of the trailing blame annotation. Must be a valid css color"
  465. },
  466. "gitlens.theme.annotations.line.trailing.light.foregroundColor": {
  467. "type": "string",
  468. "default": "rgba(153, 153, 153, 0.35)",
  469. "description": "Specifies the light theme foreground color of the trailing blame annotation. Must be a valid css color"
  470. },
  471. "gitlens.theme.lineHighlight.dark.backgroundColor": {
  472. "type": "string",
  473. "default": "rgba(0, 188, 242, 0.2)",
  474. "description": "Specifies the dark theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  475. },
  476. "gitlens.theme.lineHighlight.light.backgroundColor": {
  477. "type": "string",
  478. "default": "rgba(0, 188, 242, 0.2)",
  479. "description": "Specifies the light theme background color of the associated line highlights in blame annotations. Must be a valid css color"
  480. },
  481. "gitlens.theme.lineHighlight.dark.overviewRulerColor": {
  482. "type": "string",
  483. "default": "rgba(0, 188, 242, 0.6)",
  484. "description": "Specifies the dark theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  485. },
  486. "gitlens.theme.lineHighlight.light.overviewRulerColor": {
  487. "type": "string",
  488. "default": "rgba(0, 188, 242, 0.6)",
  489. "description": "Specifies the light theme overview ruler color of the associated line highlights in blame annotations. Must be a valid css color"
  490. },
  491. "gitlens.advanced.caching.enabled": {
  492. "type": "boolean",
  493. "default": true,
  494. "description": "Specifies whether git output will be cached"
  495. },
  496. "gitlens.advanced.caching.maxLines": {
  497. "type": "number",
  498. "default": 0,
  499. "description": "Specifies the threshold for caching larger documents"
  500. },
  501. "gitlens.advanced.git": {
  502. "type": "string",
  503. "default": null,
  504. "description": "Specifies the git path to use"
  505. },
  506. "gitlens.advanced.gitignore.enabled": {
  507. "type": "boolean",
  508. "default": true,
  509. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  510. },
  511. "gitlens.advanced.maxQuickHistory": {
  512. "type": "number",
  513. "default": 200,
  514. "description": "Specifies the maximum number of QuickPick history entries to show"
  515. },
  516. "gitlens.advanced.menus": {
  517. "type": "object",
  518. "default": {
  519. "explorerContext": {
  520. "fileDiff": true,
  521. "history": true,
  522. "remote": true
  523. },
  524. "editorContext": {
  525. "blame": true,
  526. "copy": true,
  527. "fileDiff": true,
  528. "history": true,
  529. "lineDiff": true,
  530. "remote": true
  531. },
  532. "editorTitle": {
  533. "blame": true,
  534. "fileDiff": true,
  535. "history": true,
  536. "status": true
  537. },
  538. "editorTitleContext": {
  539. "blame": true,
  540. "fileDiff": true,
  541. "history": true,
  542. "remote": true
  543. }
  544. },
  545. "description": "Specifies which commands will be added to which menus",
  546. "properties": {
  547. "explorerContext": {
  548. "type": "object",
  549. "default": {
  550. "fileDiff": true,
  551. "history": true,
  552. "remote": true
  553. },
  554. "properties": {
  555. "fileDiff": {
  556. "type": "boolean",
  557. "default": true
  558. },
  559. "history": {
  560. "type": "boolean",
  561. "default": true
  562. },
  563. "remote": {
  564. "type": "boolean",
  565. "default": true
  566. }
  567. }
  568. },
  569. "editorContext": {
  570. "type": "object",
  571. "default": {
  572. "blame": true,
  573. "copy": true,
  574. "fileDiff": true,
  575. "history": true,
  576. "lineDiff": true,
  577. "remote": true
  578. },
  579. "properties": {
  580. "blame": {
  581. "type": "boolean",
  582. "default": true
  583. },
  584. "copy": {
  585. "type": "boolean",
  586. "default": true
  587. },
  588. "details": {
  589. "type": "boolean",
  590. "default": true
  591. },
  592. "fileDiff": {
  593. "type": "boolean",
  594. "default": true
  595. },
  596. "history": {
  597. "type": "boolean",
  598. "default": true
  599. },
  600. "lineDiff": {
  601. "type": "boolean",
  602. "default": true
  603. },
  604. "remote": {
  605. "type": "boolean",
  606. "default": true
  607. }
  608. }
  609. },
  610. "editorTitle": {
  611. "type": "object",
  612. "default": {
  613. "blame": true,
  614. "fileDiff": true,
  615. "history": true,
  616. "status": true
  617. },
  618. "properties": {
  619. "blame": {
  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. "status": {
  632. "type": "boolean",
  633. "default": true
  634. }
  635. }
  636. },
  637. "editorTitleContext": {
  638. "type": "object",
  639. "default": {
  640. "blame": true,
  641. "fileDiff": true,
  642. "history": true,
  643. "remote": true
  644. },
  645. "properties": {
  646. "blame": {
  647. "type": "boolean",
  648. "default": true
  649. },
  650. "fileDiff": {
  651. "type": "boolean",
  652. "default": true
  653. },
  654. "history": {
  655. "type": "boolean",
  656. "default": true
  657. },
  658. "remote": {
  659. "type": "boolean",
  660. "default": true
  661. }
  662. }
  663. }
  664. }
  665. },
  666. "gitlens.advanced.quickPick.closeOnFocusOut": {
  667. "type": "boolean",
  668. "default": true,
  669. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  670. },
  671. "gitlens.advanced.toggleWhitespace.enabled": {
  672. "type": "boolean",
  673. "default": false,
  674. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  675. }
  676. }
  677. },
  678. "commands": [
  679. {
  680. "command": "gitlens.diffDirectory",
  681. "title": "Directory Compare",
  682. "category": "GitLens"
  683. },
  684. {
  685. "command": "gitlens.diffWithBranch",
  686. "title": "Compare File with...",
  687. "category": "GitLens"
  688. },
  689. {
  690. "command": "gitlens.diffWithNext",
  691. "title": "Compare File with Next Commit",
  692. "category": "GitLens"
  693. },
  694. {
  695. "command": "gitlens.diffWithPrevious",
  696. "title": "Compare File with Previous",
  697. "category": "GitLens"
  698. },
  699. {
  700. "command": "gitlens.diffLineWithPrevious",
  701. "title": "Compare Line Commit with Previous",
  702. "category": "GitLens"
  703. },
  704. {
  705. "command": "gitlens.diffWithWorking",
  706. "title": "Compare File with Working Tree",
  707. "category": "GitLens"
  708. },
  709. {
  710. "command": "gitlens.diffLineWithWorking",
  711. "title": "Compare Line Commit with Working Tree",
  712. "category": "GitLens"
  713. },
  714. {
  715. "command": "gitlens.showFileBlame",
  716. "title": "Show File Blame Annotations",
  717. "category": "GitLens"
  718. },
  719. {
  720. "command": "gitlens.showLineBlame",
  721. "title": "Show Line Blame Annotations",
  722. "category": "GitLens"
  723. },
  724. {
  725. "command": "gitlens.toggleFileBlame",
  726. "title": "Toggle File Blame Annotations",
  727. "category": "GitLens",
  728. "icon": {
  729. "dark": "images/git-icon-dark.svg",
  730. "light": "images/git-icon-light.svg"
  731. }
  732. },
  733. {
  734. "command": "gitlens.toggleLineBlame",
  735. "title": "Toggle Line Blame Annotations",
  736. "category": "GitLens"
  737. },
  738. {
  739. "command": "gitlens.toggleCodeLens",
  740. "title": "Toggle Git Code Lens",
  741. "category": "GitLens"
  742. },
  743. {
  744. "command": "gitlens.showBlameHistory",
  745. "title": "Open Blame History Explorer",
  746. "category": "GitLens"
  747. },
  748. {
  749. "command": "gitlens.showCommitSearch",
  750. "title": "Search Commits",
  751. "category": "GitLens"
  752. },
  753. {
  754. "command": "gitlens.showFileHistory",
  755. "title": "Open File History Explorer",
  756. "category": "GitLens"
  757. },
  758. {
  759. "command": "gitlens.showLastQuickPick",
  760. "title": "Show Last Opened Quick Pick",
  761. "category": "GitLens"
  762. },
  763. {
  764. "command": "gitlens.showQuickCommitDetails",
  765. "title": "Show Commit Details",
  766. "category": "GitLens"
  767. },
  768. {
  769. "command": "gitlens.showQuickCommitFileDetails",
  770. "title": "Show Line Commit Details",
  771. "category": "GitLens"
  772. },
  773. {
  774. "command": "gitlens.showQuickFileHistory",
  775. "title": "Show File History",
  776. "category": "GitLens"
  777. },
  778. {
  779. "command": "gitlens.showQuickBranchHistory",
  780. "title": "Show Branch History",
  781. "category": "GitLens"
  782. },
  783. {
  784. "command": "gitlens.showQuickRepoHistory",
  785. "title": "Show Current Branch History",
  786. "category": "GitLens"
  787. },
  788. {
  789. "command": "gitlens.showQuickRepoStatus",
  790. "title": "Show Repository Status",
  791. "category": "GitLens"
  792. },
  793. {
  794. "command": "gitlens.showQuickStashList",
  795. "title": "Show Stashed Changes",
  796. "category": "GitLens"
  797. },
  798. {
  799. "command": "gitlens.copyShaToClipboard",
  800. "title": "Copy Commit ID to Clipboard",
  801. "category": "GitLens"
  802. },
  803. {
  804. "command": "gitlens.copyMessageToClipboard",
  805. "title": "Copy Commit Message to Clipboard",
  806. "category": "GitLens"
  807. },
  808. {
  809. "command": "gitlens.closeUnchangedFiles",
  810. "title": "Close Unchanged Files",
  811. "category": "GitLens"
  812. },
  813. {
  814. "command": "gitlens.openChangedFiles",
  815. "title": "Open Changed Files",
  816. "category": "GitLens"
  817. },
  818. {
  819. "command": "gitlens.openBranchInRemote",
  820. "title": "Open Branch in Remote",
  821. "category": "GitLens"
  822. },
  823. {
  824. "command": "gitlens.openCommitInRemote",
  825. "title": "Open Line Commit in Remote",
  826. "category": "GitLens"
  827. },
  828. {
  829. "command": "gitlens.openFileInRemote",
  830. "title": "Open File in Remote",
  831. "category": "GitLens"
  832. },
  833. {
  834. "command": "gitlens.openRepoInRemote",
  835. "title": "Open Repository in Remote",
  836. "category": "GitLens"
  837. },
  838. {
  839. "command": "gitlens.stashApply",
  840. "title": "Apply Stashed Changes",
  841. "category": "GitLens"
  842. },
  843. {
  844. "command": "gitlens.stashSave",
  845. "title": "Stash Changes",
  846. "category": "GitLens"
  847. }
  848. ],
  849. "menus": {
  850. "commandPalette": [
  851. {
  852. "command": "gitlens.diffDirectory",
  853. "when": "gitlens:enabled"
  854. },
  855. {
  856. "command": "gitlens.diffWithBranch",
  857. "when": "gitlens:isTracked"
  858. },
  859. {
  860. "command": "gitlens.diffWithNext",
  861. "when": "gitlens:isTracked"
  862. },
  863. {
  864. "command": "gitlens.diffWithPrevious",
  865. "when": "gitlens:isTracked"
  866. },
  867. {
  868. "command": "gitlens.diffLineWithPrevious",
  869. "when": "gitlens:isBlameable"
  870. },
  871. {
  872. "command": "gitlens.diffWithWorking",
  873. "when": "gitlens:isTracked"
  874. },
  875. {
  876. "command": "gitlens.diffLineWithWorking",
  877. "when": "gitlens:isBlameable"
  878. },
  879. {
  880. "command": "gitlens.showFileBlame",
  881. "when": "gitlens:isBlameable"
  882. },
  883. {
  884. "command": "gitlens.showLineBlame",
  885. "when": "gitlens:isBlameable"
  886. },
  887. {
  888. "command": "gitlens.toggleFileBlame",
  889. "when": "gitlens:isBlameable"
  890. },
  891. {
  892. "command": "gitlens.toggleLineBlame",
  893. "when": "gitlens:isBlameable"
  894. },
  895. {
  896. "command": "gitlens.toggleCodeLens",
  897. "when": "gitlens:isTracked && gitlens:canToggleCodeLens"
  898. },
  899. {
  900. "command": "gitlens.showBlameHistory",
  901. "when": "gitlens:isBlameable"
  902. },
  903. {
  904. "command": "gitlens.showFileHistory",
  905. "when": "gitlens:isTracked"
  906. },
  907. {
  908. "command": "gitlens.showLastQuickPick",
  909. "when": "gitlens:enabled"
  910. },
  911. {
  912. "command": "gitlens.showQuickCommitDetails",
  913. "when": "gitlens:isBlameable"
  914. },
  915. {
  916. "command": "gitlens.showQuickCommitFileDetails",
  917. "when": "gitlens:isBlameable"
  918. },
  919. {
  920. "command": "gitlens.showQuickFileHistory",
  921. "when": "gitlens:isTracked"
  922. },
  923. {
  924. "command": "gitlens.showQuickBranchHistory",
  925. "when": "gitlens:enabled"
  926. },
  927. {
  928. "command": "gitlens.showQuickRepoHistory",
  929. "when": "gitlens:enabled"
  930. },
  931. {
  932. "command": "gitlens.showQuickRepoStatus",
  933. "when": "gitlens:enabled"
  934. },
  935. {
  936. "command": "gitlens.showQuickStashList",
  937. "when": "gitlens:enabled"
  938. },
  939. {
  940. "command": "gitlens.copyShaToClipboard",
  941. "when": "gitlens:isBlameable"
  942. },
  943. {
  944. "command": "gitlens.copyMessageToClipboard",
  945. "when": "gitlens:isBlameable"
  946. },
  947. {
  948. "command": "gitlens.closeUnchangedFiles",
  949. "when": "gitlens:enabled"
  950. },
  951. {
  952. "command": "gitlens.openChangedFiles",
  953. "when": "gitlens:enabled"
  954. },
  955. {
  956. "command": "gitlens.openBranchInRemote",
  957. "when": "gitlens:hasRemotes"
  958. },
  959. {
  960. "command": "gitlens.openCommitInRemote",
  961. "when": "gitlens:isBlameable && gitlens:hasRemotes"
  962. },
  963. {
  964. "command": "gitlens.openFileInRemote",
  965. "when": "gitlens:isTracked && gitlens:hasRemotes"
  966. },
  967. {
  968. "command": "gitlens.openRepoInRemote",
  969. "when": "gitlens:hasRemotes"
  970. },
  971. {
  972. "command": "gitlens.stashApply",
  973. "when": "gitlens:enabled"
  974. },
  975. {
  976. "command": "gitlens.stashSave",
  977. "when": "gitlens:enabled"
  978. }
  979. ],
  980. "explorer/context": [
  981. {
  982. "command": "gitlens.openFileInRemote",
  983. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.remote",
  984. "group": "navigation@100"
  985. },
  986. {
  987. "command": "gitlens.diffWithPrevious",
  988. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  989. "group": "1_gitlens@1"
  990. },
  991. {
  992. "command": "gitlens.diffWithWorking",
  993. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.fileDiff",
  994. "group": "1_gitlens@2"
  995. },
  996. {
  997. "command": "gitlens.showQuickFileHistory",
  998. "when": "gitlens:enabled && config.gitlens.advanced.menus.explorerContext.history",
  999. "group": "1_gitlens_1@1"
  1000. }
  1001. ],
  1002. "editor/title": [
  1003. {
  1004. "command": "gitlens.toggleFileBlame",
  1005. "when": "gitlens:isBlameable && config.gitlens.advanced.menus.editorTitle.blame",
  1006. "group": "navigation@100"
  1007. },
  1008. {
  1009. "command": "gitlens.openFileInRemote",
  1010. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1011. "group": "1_gitlens"
  1012. },
  1013. {
  1014. "command": "gitlens.openRepoInRemote",
  1015. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1016. "group": "1_gitlens"
  1017. },
  1018. {
  1019. "command": "gitlens.diffWithPrevious",
  1020. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1021. "group": "2_gitlens"
  1022. },
  1023. {
  1024. "command": "gitlens.diffWithWorking",
  1025. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.fileDiff",
  1026. "group": "2_gitlens"
  1027. },
  1028. {
  1029. "command": "gitlens.showQuickFileHistory",
  1030. "when": "editorFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorTitle.history",
  1031. "group": "2_gitlens_1"
  1032. },
  1033. {
  1034. "command": "gitlens.showQuickRepoHistory",
  1035. "when": "!editorFocus && gitlens:enabled && config.gitlens.advanced.menus.editorTitle.history",
  1036. "group": "2_gitlens_1"
  1037. },
  1038. {
  1039. "command": "gitlens.showQuickRepoStatus",
  1040. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitle.status",
  1041. "group": "2_gitlens_1"
  1042. }
  1043. ],
  1044. "editor/title/context": [
  1045. {
  1046. "command": "gitlens.openFileInRemote",
  1047. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.remote",
  1048. "group": "1_gitlens"
  1049. },
  1050. {
  1051. "command": "gitlens.diffWithPrevious",
  1052. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1053. "group": "1_gitlens_1@1"
  1054. },
  1055. {
  1056. "command": "gitlens.diffWithWorking",
  1057. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.fileDiff",
  1058. "group": "1_gitlens_1@2"
  1059. },
  1060. {
  1061. "command": "gitlens.showQuickFileHistory",
  1062. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.history",
  1063. "group": "1_gitlens_2@1"
  1064. },
  1065. {
  1066. "command": "gitlens.toggleFileBlame",
  1067. "when": "gitlens:enabled && config.gitlens.advanced.menus.editorTitleContext.blame",
  1068. "group": "1_gitlens_2@2"
  1069. }
  1070. ],
  1071. "editor/context": [
  1072. {
  1073. "command": "gitlens.openFileInRemote",
  1074. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes && config.gitlens.advanced.menus.editorContext.remote",
  1075. "group": "navigation@100"
  1076. },
  1077. {
  1078. "command": "gitlens.diffLineWithPrevious",
  1079. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1080. "group": "1_gitlens@1"
  1081. },
  1082. {
  1083. "command": "gitlens.diffLineWithWorking",
  1084. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.lineDiff",
  1085. "group": "1_gitlens@2"
  1086. },
  1087. {
  1088. "command": "gitlens.showQuickCommitFileDetails",
  1089. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.details",
  1090. "group": "1_gitlens@3"
  1091. },
  1092. {
  1093. "command": "gitlens.diffWithPrevious",
  1094. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1095. "group": "1_gitlens_1@1"
  1096. },
  1097. {
  1098. "command": "gitlens.diffWithWorking",
  1099. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.advanced.menus.editorContext.fileDiff",
  1100. "group": "1_gitlens_1@2"
  1101. },
  1102. {
  1103. "command": "gitlens.showQuickFileHistory",
  1104. "when": "gitlens:isTracked && config.gitlens.advanced.menus.editorContext.history",
  1105. "group": "3_gitlens@1"
  1106. },
  1107. {
  1108. "command": "gitlens.toggleFileBlame",
  1109. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.blame",
  1110. "group": "3_gitlens@2"
  1111. },
  1112. {
  1113. "command": "gitlens.copyShaToClipboard",
  1114. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1115. "group": "9_gitlens@1"
  1116. },
  1117. {
  1118. "command": "gitlens.copyMessageToClipboard",
  1119. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.advanced.menus.editorContext.copy",
  1120. "group": "9_gitlens@2"
  1121. }
  1122. ]
  1123. },
  1124. "keybindings": [
  1125. {
  1126. "command": "gitlens.key.left",
  1127. "key": "alt+left",
  1128. "when": "gitlens:key:left"
  1129. },
  1130. {
  1131. "command": "gitlens.key.right",
  1132. "key": "alt+right",
  1133. "when": "gitlens:key:right"
  1134. },
  1135. {
  1136. "command": "gitlens.key.,",
  1137. "key": "alt+,",
  1138. "when": "gitlens:key:,"
  1139. },
  1140. {
  1141. "command": "gitlens.key..",
  1142. "key": "alt+.",
  1143. "when": "gitlens:key:."
  1144. },
  1145. {
  1146. "command": "gitlens.toggleFileBlame",
  1147. "key": "alt+b",
  1148. "mac": "alt+b",
  1149. "when": "editorTextFocus && gitlens:isTracked"
  1150. },
  1151. {
  1152. "command": "gitlens.toggleCodeLens",
  1153. "key": "shift+alt+b",
  1154. "mac": "shift+alt+b",
  1155. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  1156. },
  1157. {
  1158. "command": "gitlens.showLastQuickPick",
  1159. "key": "alt+-",
  1160. "mac": "alt+-",
  1161. "when": "gitlens:enabled"
  1162. },
  1163. {
  1164. "command": "gitlens.showCommitSearch",
  1165. "key": "alt+/",
  1166. "mac": "alt+/",
  1167. "when": "gitlens:enabled"
  1168. },
  1169. {
  1170. "command": "gitlens.showQuickFileHistory",
  1171. "key": "alt+h",
  1172. "mac": "alt+h",
  1173. "when": "gitlens:enabled"
  1174. },
  1175. {
  1176. "command": "gitlens.showQuickRepoHistory",
  1177. "key": "shift+alt+h",
  1178. "mac": "shift+alt+h",
  1179. "when": "gitlens:enabled"
  1180. },
  1181. {
  1182. "command": "gitlens.showQuickRepoStatus",
  1183. "key": "alt+s",
  1184. "mac": "alt+s",
  1185. "when": "gitlens:enabled"
  1186. },
  1187. {
  1188. "command": "gitlens.showQuickCommitFileDetails",
  1189. "key": "alt+c",
  1190. "mac": "alt+c",
  1191. "when": "editorTextFocus && gitlens:enabled"
  1192. },
  1193. {
  1194. "command": "gitlens.diffWithNext",
  1195. "key": "alt+.",
  1196. "mac": "alt+.",
  1197. "when": "editorTextFocus && gitlens:isTracked"
  1198. },
  1199. {
  1200. "command": "gitlens.diffLineWithPrevious",
  1201. "key": "shift+alt+,",
  1202. "mac": "shift+alt+,",
  1203. "when": "editorTextFocus && gitlens:isTracked"
  1204. },
  1205. {
  1206. "command": "gitlens.diffWithPrevious",
  1207. "key": "alt+,",
  1208. "mac": "alt+,",
  1209. "when": "editorTextFocus && gitlens:isTracked"
  1210. },
  1211. {
  1212. "command": "gitlens.diffLineWithWorking",
  1213. "key": "alt+w",
  1214. "mac": "alt+w",
  1215. "when": "editorTextFocus && gitlens:isTracked"
  1216. },
  1217. {
  1218. "command": "gitlens.diffWithWorking",
  1219. "key": "shift+alt+w",
  1220. "mac": "shift+alt+w",
  1221. "when": "editorTextFocus && gitlens:isTracked"
  1222. }
  1223. ]
  1224. },
  1225. "activationEvents": [
  1226. "*"
  1227. ],
  1228. "scripts": {
  1229. "clean": "git clean -xdf",
  1230. "compile": "tslint --project tslint.json && tsc -p ./",
  1231. "watch": "tsc -watch -p ./",
  1232. "lint": "tslint --project tslint.json",
  1233. "pack": "git clean -xdf && vsce package",
  1234. "postinstall": "node ./node_modules/vscode/bin/install",
  1235. "pub": "git clean -xdf && vsce publish",
  1236. "reset": "git clean -xdf && npm install",
  1237. "vscode:prepublish": "npm install --no-save && npm run compile"
  1238. },
  1239. "dependencies": {
  1240. "applicationinsights": "0.20.1",
  1241. "copy-paste": "1.3.0",
  1242. "iconv-lite": "0.4.17",
  1243. "ignore": "3.3.3",
  1244. "lodash.debounce": "4.0.8",
  1245. "lodash.escaperegexp": "4.1.2",
  1246. "lodash.isequal": "4.5.0",
  1247. "lodash.once": "4.1.1",
  1248. "moment": "2.18.1",
  1249. "spawn-rx": "2.0.11",
  1250. "tmp": "0.0.31"
  1251. },
  1252. "devDependencies": {
  1253. "@types/copy-paste": "1.1.30",
  1254. "@types/iconv-lite": "0.0.1",
  1255. "@types/mocha": "2.2.41",
  1256. "@types/node": "7.0.28",
  1257. "@types/tmp": "0.0.33",
  1258. "mocha": "3.4.2",
  1259. "tslint": "5.4.3",
  1260. "typescript": "2.3.4",
  1261. "vscode": "1.1.0"
  1262. }
  1263. }