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.

5018 lines
228 KiB

5 years ago
6 years ago
6 years ago
7 years ago
7 years ago
6 years ago
7 years ago
6 years ago
  1. {
  2. "name": "gitlens",
  3. "displayName": "GitLens — Git supercharged",
  4. "description": "Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more",
  5. "version": "9.5.1",
  6. "author": {
  7. "name": "Eric Amodio",
  8. "email": "eamodio@gmail.com"
  9. },
  10. "publisher": "eamodio",
  11. "license": "SEE LICENSE IN LICENSE",
  12. "homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
  13. "bugs": {
  14. "url": "https://github.com/eamodio/vscode-gitlens/issues"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/eamodio/vscode-gitlens.git"
  19. },
  20. "engines": {
  21. "vscode": "^1.30.0"
  22. },
  23. "main": "./dist/extension",
  24. "icon": "images/gitlens-icon.png",
  25. "preview": false,
  26. "badges": [
  27. {
  28. "url": "https://img.shields.io/badge/vscode--dev--community-gitlens-blue.svg?logo=slack",
  29. "href": "https://vscode-slack.amod.io",
  30. "description": "Join us in the #gitlens channel"
  31. }
  32. ],
  33. "categories": [
  34. "Other"
  35. ],
  36. "galleryBanner": {
  37. "color": "#8647ae",
  38. "theme": "dark"
  39. },
  40. "keywords": [
  41. "gitlens",
  42. "git",
  43. "blame",
  44. "log",
  45. "annotation",
  46. "multi-root ready"
  47. ],
  48. "activationEvents": [
  49. "*"
  50. ],
  51. "contributes": {
  52. "configuration": {
  53. "type": "object",
  54. "title": "GitLens",
  55. "properties": {
  56. "gitlens.blame.avatars": {
  57. "type": "boolean",
  58. "default": true,
  59. "markdownDescription": "Specifies whether to show avatar images in the gutter blame annotations",
  60. "scope": "window"
  61. },
  62. "gitlens.blame.compact": {
  63. "type": "boolean",
  64. "default": true,
  65. "markdownDescription": "Specifies whether to compact (deduplicate) matching adjacent gutter blame annotations",
  66. "scope": "window"
  67. },
  68. "gitlens.blame.dateFormat": {
  69. "type": "string",
  70. "default": null,
  71. "markdownDescription": "Specifies how to format absolute dates (using the `${date}` token) in gutter blame annotations. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
  72. "scope": "window"
  73. },
  74. "gitlens.blame.format": {
  75. "type": "string",
  76. "default": "${message|40?} ${agoOrDate|14-}",
  77. "markdownDescription": "Specifies the format of the gutter blame annotations. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.blame.dateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  78. "scope": "window"
  79. },
  80. "gitlens.blame.heatmap.enabled": {
  81. "type": "boolean",
  82. "default": true,
  83. "markdownDescription": "Specifies whether to provide a heatmap indicator in the gutter blame annotations",
  84. "scope": "window"
  85. },
  86. "gitlens.blame.heatmap.location": {
  87. "type": "string",
  88. "default": "right",
  89. "enum": [
  90. "left",
  91. "right"
  92. ],
  93. "enumDescriptions": [
  94. "Adds a heatmap indicator on the left edge of the gutter blame annotations",
  95. "Adds a heatmap indicator on the right edge of the gutter blame annotations"
  96. ],
  97. "markdownDescription": "Specifies where the heatmap indicators will be shown in the gutter blame annotations",
  98. "scope": "window"
  99. },
  100. "gitlens.blame.highlight.enabled": {
  101. "type": "boolean",
  102. "default": true,
  103. "markdownDescription": "Specifies whether to highlight lines associated with the current line",
  104. "scope": "window"
  105. },
  106. "gitlens.blame.highlight.locations": {
  107. "type": "array",
  108. "default": [
  109. "gutter",
  110. "line",
  111. "overview"
  112. ],
  113. "items": {
  114. "type": "string",
  115. "enum": [
  116. "gutter",
  117. "line",
  118. "overview"
  119. ],
  120. "enumDescriptions": [
  121. "Adds a gutter glyph",
  122. "Adds a full-line highlight background color",
  123. "Adds a decoration to the overview ruler (scroll bar)"
  124. ]
  125. },
  126. "minItems": 1,
  127. "maxItems": 3,
  128. "uniqueItems": true,
  129. "markdownDescription": "Specifies where the associated line highlights will be shown",
  130. "scope": "window"
  131. },
  132. "gitlens.blame.ignoreWhitespace": {
  133. "type": "boolean",
  134. "default": false,
  135. "markdownDescription": "Specifies whether to ignore whitespace when comparing revisions during blame operations",
  136. "scope": "resource"
  137. },
  138. "gitlens.blame.separateLines": {
  139. "type": "boolean",
  140. "default": true,
  141. "markdownDescription": "Specifies whether gutter blame annotations will be separated by a small gap",
  142. "scope": "window"
  143. },
  144. "gitlens.blame.toggleMode": {
  145. "type": "string",
  146. "default": "file",
  147. "enum": [
  148. "file",
  149. "window"
  150. ],
  151. "enumDescriptions": [
  152. "Toggles each file individually",
  153. "Toggles the window, i.e. all files at once"
  154. ],
  155. "markdownDescription": "Specifies how the gutter blame annotations will be toggled",
  156. "scope": "window"
  157. },
  158. "gitlens.codeLens.authors.command": {
  159. "type": "string",
  160. "default": "gitlens.toggleFileBlame",
  161. "enum": [
  162. "gitlens.toggleFileBlame",
  163. "gitlens.diffWithPrevious",
  164. "gitlens.showQuickCommitDetails",
  165. "gitlens.showQuickCommitFileDetails",
  166. "gitlens.showQuickFileHistory",
  167. "gitlens.showQuickRepoHistory"
  168. ],
  169. "enumDescriptions": [
  170. "Toggles file blame annotations",
  171. "Compares the current committed file with the previous commit",
  172. "Shows a commit details quick pick",
  173. "Shows a commit file details quick pick",
  174. "Shows a file history quick pick",
  175. "Shows a branch history quick pick"
  176. ],
  177. "markdownDescription": "Specifies the command to be executed when an _authors_ code lens is clicked",
  178. "scope": "window"
  179. },
  180. "gitlens.codeLens.authors.enabled": {
  181. "type": "boolean",
  182. "default": true,
  183. "markdownDescription": "Specifies whether to provide 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)",
  184. "scope": "window"
  185. },
  186. "gitlens.codeLens.enabled": {
  187. "type": "boolean",
  188. "default": true,
  189. "markdownDescription": "Specifies whether to provide any Git code lens, by default. Use the `Toggle Git Code Lens` command (`gitlens.toggleCodeLens`) to toggle the Git code lens on and off for the current window",
  190. "scope": "window"
  191. },
  192. "gitlens.codeLens.includeSingleLineSymbols": {
  193. "type": "boolean",
  194. "default": false,
  195. "markdownDescription": "Specifies whether to provide any Git code lens on symbols that span only a single line",
  196. "scope": "window"
  197. },
  198. "gitlens.codeLens.recentChange.command": {
  199. "type": "string",
  200. "default": "gitlens.showQuickCommitFileDetails",
  201. "enum": [
  202. "gitlens.toggleFileBlame",
  203. "gitlens.diffWithPrevious",
  204. "gitlens.showQuickCommitDetails",
  205. "gitlens.showQuickCommitFileDetails",
  206. "gitlens.showQuickFileHistory",
  207. "gitlens.showQuickRepoHistory"
  208. ],
  209. "enumDescriptions": [
  210. "Toggles file blame annotations",
  211. "Compares the current committed file with the previous commit",
  212. "Shows a commit details quick pick",
  213. "Shows a commit file details quick pick",
  214. "Shows a file history quick pick",
  215. "Shows a branch history quick pick"
  216. ],
  217. "markdownDescription": "Specifies the command to be executed when a _recent change_ code lens is clicked",
  218. "scope": "window"
  219. },
  220. "gitlens.codeLens.recentChange.enabled": {
  221. "type": "boolean",
  222. "default": true,
  223. "markdownDescription": "Specifies whether to provide a _recent change_ code lens, showing the author and date of the most recent commit for the file or code block",
  224. "scope": "window"
  225. },
  226. "gitlens.codeLens.scopes": {
  227. "type": "array",
  228. "default": [
  229. "document",
  230. "containers"
  231. ],
  232. "items": {
  233. "type": "string",
  234. "enum": [
  235. "document",
  236. "containers",
  237. "blocks"
  238. ],
  239. "enumDescriptions": [
  240. "Adds code lens at the top of the document",
  241. "Adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)",
  242. "Adds code lens at the start of block-like symbols (functions, methods, etc) lines"
  243. ]
  244. },
  245. "minItems": 1,
  246. "maxItems": 4,
  247. "uniqueItems": true,
  248. "markdownDescription": "Specifies where Git code lens will be shown in the document",
  249. "scope": "resource"
  250. },
  251. "gitlens.codeLens.scopesByLanguage": {
  252. "type": "array",
  253. "default": [
  254. {
  255. "language": "azure-pipelines",
  256. "scopes": [
  257. "document"
  258. ]
  259. },
  260. {
  261. "language": "css",
  262. "scopes": [
  263. "document"
  264. ]
  265. },
  266. {
  267. "language": "html",
  268. "scopes": [
  269. "document"
  270. ]
  271. },
  272. {
  273. "language": "json",
  274. "scopes": [
  275. "document"
  276. ]
  277. },
  278. {
  279. "language": "jsonc",
  280. "scopes": [
  281. "document"
  282. ]
  283. },
  284. {
  285. "language": "less",
  286. "scopes": [
  287. "document"
  288. ]
  289. },
  290. {
  291. "language": "postcss",
  292. "scopes": [
  293. "document"
  294. ]
  295. },
  296. {
  297. "language": "python",
  298. "symbolScopes": [
  299. "!Module"
  300. ]
  301. },
  302. {
  303. "language": "scss",
  304. "scopes": [
  305. "document"
  306. ]
  307. },
  308. {
  309. "language": "stylus",
  310. "scopes": [
  311. "document"
  312. ]
  313. },
  314. {
  315. "language": "vue",
  316. "scopes": [
  317. "document"
  318. ]
  319. },
  320. {
  321. "language": "yaml",
  322. "scopes": [
  323. "document"
  324. ]
  325. }
  326. ],
  327. "items": {
  328. "type": "object",
  329. "required": [
  330. "language"
  331. ],
  332. "properties": {
  333. "language": {
  334. "type": "string",
  335. "description": "Specifies the language to which this code lens override applies"
  336. },
  337. "scopes": {
  338. "type": "array",
  339. "default": [
  340. "document",
  341. "containers"
  342. ],
  343. "items": {
  344. "type": "string",
  345. "enum": [
  346. "document",
  347. "containers",
  348. "blocks",
  349. "custom"
  350. ],
  351. "enumDescriptions": [
  352. "Adds code lens at the top of the document",
  353. "Adds code lens at the start of container-like symbols (modules, classes, interfaces, etc)",
  354. "Adds code lens at the start of block-like symbols (functions, methods, properties, etc) lines",
  355. "Adds code lens at the start of symbols contained in `symbolScopes`"
  356. ]
  357. },
  358. "minItems": 1,
  359. "maxItems": 4,
  360. "uniqueItems": true,
  361. "description": "Specifies where Git code lens will be shown in the document for the specified language"
  362. },
  363. "symbolScopes": {
  364. "type": "array",
  365. "items": {
  366. "type": "string"
  367. },
  368. "uniqueItems": true,
  369. "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`"
  370. }
  371. }
  372. },
  373. "uniqueItems": true,
  374. "markdownDescription": "Specifies where Git code lens will be shown in the document for the specified languages",
  375. "scope": "resource"
  376. },
  377. "gitlens.codeLens.symbolScopes": {
  378. "type": "array",
  379. "items": {
  380. "type": "string"
  381. },
  382. "uniqueItems": true,
  383. "markdownDescription": "Specifies a set of document symbols where Git code lens will or will not be shown in the document. Prefix with `!` to avoid providing a Git code lens for the symbol. Must be a member of `SymbolKind`",
  384. "scope": "resource"
  385. },
  386. "gitlens.currentLine.dateFormat": {
  387. "type": "string",
  388. "default": null,
  389. "markdownDescription": "Specifies how to format absolute dates (using the `${date}` token) for the current line blame annotation. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
  390. "scope": "window"
  391. },
  392. "gitlens.currentLine.enabled": {
  393. "type": "boolean",
  394. "default": true,
  395. "markdownDescription": "Specifies whether to provide a blame annotation for the current line, by default. Use the `Toggle Line Blame Annotations` command (`gitlens.toggleLineBlame`) to toggle the annotations on and off for the current window",
  396. "scope": "window"
  397. },
  398. "gitlens.currentLine.format": {
  399. "type": "string",
  400. "default": "${authorAgoOrDate} • ${message}",
  401. "markdownDescription": "Specifies the format of the current line blame annotation. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.currentLine.dateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  402. "scope": "window"
  403. },
  404. "gitlens.currentLine.scrollable": {
  405. "type": "boolean",
  406. "default": true,
  407. "markdownDescription": "Specifies whether the current line blame annotation can be scrolled into view when it is outside the viewport",
  408. "scope": "window"
  409. },
  410. "gitlens.debug": {
  411. "type": "boolean",
  412. "default": false,
  413. "markdownDescription": "Specifies debug mode",
  414. "scope": "window"
  415. },
  416. "gitlens.defaultDateFormat": {
  417. "type": "string",
  418. "default": null,
  419. "markdownDescription": "Specifies how absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
  420. "scope": "window"
  421. },
  422. "gitlens.defaultDateShortFormat": {
  423. "type": "string",
  424. "default": null,
  425. "markdownDescription": "Specifies how short absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
  426. "scope": "window"
  427. },
  428. "gitlens.defaultDateStyle": {
  429. "type": "string",
  430. "default": "relative",
  431. "enum": [
  432. "relative",
  433. "absolute"
  434. ],
  435. "enumDescriptions": [
  436. "e.g. 1 day ago",
  437. "e.g. July 25th, 2018 7:18pm"
  438. ],
  439. "markdownDescription": "Specifies how dates will be displayed by default",
  440. "scope": "window"
  441. },
  442. "gitlens.defaultGravatarsStyle": {
  443. "type": "string",
  444. "default": "robohash",
  445. "enum": [
  446. "identicon",
  447. "mp",
  448. "monsterid",
  449. "retro",
  450. "robohash",
  451. "wavatar"
  452. ],
  453. "enumDescriptions": [
  454. "A geometric pattern",
  455. "A simple, cartoon-style silhouetted outline of a person (does not vary by email hash)",
  456. "A monster with different colors, faces, etc",
  457. "8-bit arcade-style pixelated faces",
  458. "A robot with different colors, faces, etc",
  459. "A face with differing features and backgrounds"
  460. ],
  461. "markdownDescription": "Specifies the style of the gravatar default (fallback) images",
  462. "scope": "window"
  463. },
  464. "gitlens.heatmap.ageThreshold": {
  465. "type": "string",
  466. "default": "90",
  467. "markdownDescription": "Specifies the age of the most recent change (in days) after which the gutter heatmap annotations will be cold rather than hot (i.e. will use `#gitlens.heatmap.coldColor#` instead of `#gitlens.heatmap.hotColor#`)",
  468. "scope": "window"
  469. },
  470. "gitlens.heatmap.coldColor": {
  471. "type": "string",
  472. "default": "#0a60f6",
  473. "markdownDescription": "Specifies the base color of the gutter heatmap annotations when the most recent change is older (cold) than the `#gitlens.heatmap.ageThreshold#` value",
  474. "scope": "window"
  475. },
  476. "gitlens.heatmap.hotColor": {
  477. "type": "string",
  478. "default": "#f66a0a",
  479. "markdownDescription": "Specifies the base color of the gutter heatmap annotations when the most recent change is newer (hot) than the `#gitlens.heatmap.ageThreshold#` value",
  480. "scope": "window"
  481. },
  482. "gitlens.heatmap.toggleMode": {
  483. "type": "string",
  484. "default": "file",
  485. "enum": [
  486. "file",
  487. "window"
  488. ],
  489. "enumDescriptions": [
  490. "Toggles each file individually",
  491. "Toggles the window, i.e. all files at once"
  492. ],
  493. "markdownDescription": "Specifies how the gutter heatmap annotations will be toggled",
  494. "scope": "window"
  495. },
  496. "gitlens.hovers.annotations.changes": {
  497. "type": "boolean",
  498. "default": true,
  499. "markdownDescription": "Specifies whether to provide a _changes (diff)_ hover for all lines when showing blame annotations",
  500. "scope": "window"
  501. },
  502. "gitlens.hovers.annotations.details": {
  503. "type": "boolean",
  504. "default": true,
  505. "markdownDescription": "Specifies whether to provide a _commit details_ hover for all lines when showing blame annotations",
  506. "scope": "window"
  507. },
  508. "gitlens.hovers.annotations.enabled": {
  509. "type": "boolean",
  510. "default": true,
  511. "markdownDescription": "Specifies whether to provide any hovers when showing blame annotations",
  512. "scope": "window"
  513. },
  514. "gitlens.hovers.annotations.over": {
  515. "type": "string",
  516. "default": "line",
  517. "enum": [
  518. "annotation",
  519. "line"
  520. ],
  521. "enumDescriptions": [
  522. "Only shown when hovering over the line annotation",
  523. "Shown when hovering anywhere over the line"
  524. ],
  525. "markdownDescription": "Specifies when to trigger hovers when showing blame annotations",
  526. "scope": "window"
  527. },
  528. "gitlens.hovers.currentLine.changes": {
  529. "type": "boolean",
  530. "default": true,
  531. "markdownDescription": "Specifies whether to provide a _changes (diff)_ hover for the current line",
  532. "scope": "window"
  533. },
  534. "gitlens.hovers.currentLine.details": {
  535. "type": "boolean",
  536. "default": true,
  537. "markdownDescription": "Specifies whether to provide a _commit details_ hover for the current line",
  538. "scope": "window"
  539. },
  540. "gitlens.hovers.currentLine.enabled": {
  541. "type": "boolean",
  542. "default": true,
  543. "markdownDescription": "Specifies whether to provide any hovers for the current line",
  544. "scope": "window"
  545. },
  546. "gitlens.hovers.currentLine.over": {
  547. "type": "string",
  548. "default": "annotation",
  549. "enum": [
  550. "annotation",
  551. "line"
  552. ],
  553. "enumDescriptions": [
  554. "Only shown when hovering over the line annotation",
  555. "Shown when hovering anywhere over the line"
  556. ],
  557. "markdownDescription": "Specifies when to trigger hovers for the current line",
  558. "scope": "window"
  559. },
  560. "gitlens.hovers.avatars": {
  561. "type": "boolean",
  562. "default": true,
  563. "markdownDescription": "Specifies whether to show avatar images in hovers",
  564. "scope": "window"
  565. },
  566. "gitlens.hovers.detailsMarkdownFormat": {
  567. "type": "string",
  568. "default": "[${avatar}  __${author}__](mailto:${email}), ${ago}   _(${date})_ ${message}\n\n${commands}",
  569. "markdownDescription": "Specifies the format (in markdown) of the _commit details_ hover. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`\n - `${avatar}` — commit author avatar\n - `${commands}` — a set of commit commands",
  570. "scope": "window"
  571. },
  572. "gitlens.hovers.enabled": {
  573. "type": "boolean",
  574. "default": true,
  575. "markdownDescription": "Specifies whether to provide any hovers",
  576. "scope": "window"
  577. },
  578. "gitlens.insiders": {
  579. "type": "boolean",
  580. "default": false,
  581. "markdownDescription": "Specifies whether to enable experimental features",
  582. "scope": "window"
  583. },
  584. "gitlens.keymap": {
  585. "type": "string",
  586. "default": "chorded",
  587. "enum": [
  588. "alternate",
  589. "chorded",
  590. "none"
  591. ],
  592. "enumDescriptions": [
  593. "Adds an alternate set of shortcut keys that start with `Alt` (⌥ on macOS)",
  594. "Adds a chorded set of shortcut keys that start with `Ctrl+Alt+G` (`⌥⌘G` on macOS)",
  595. "No shortcut keys will be added"
  596. ],
  597. "markdownDescription": "Specifies the keymap to use for GitLens shortcut keys",
  598. "scope": "window"
  599. },
  600. "gitlens.liveshare.allowGuestAccess": {
  601. "type": "boolean",
  602. "default": true,
  603. "description": "Specifies whether to allow guest access to GitLens features when using Visual Studio Live Share",
  604. "scope": "window"
  605. },
  606. "gitlens.menus": {
  607. "anyOf": [
  608. {
  609. "enum": [
  610. false
  611. ]
  612. },
  613. {
  614. "type": "object",
  615. "properties": {
  616. "editor": {
  617. "anyOf": [
  618. {
  619. "enum": [
  620. false
  621. ]
  622. },
  623. {
  624. "type": "object",
  625. "properties": {
  626. "blame": {
  627. "type": "boolean"
  628. },
  629. "clipboard": {
  630. "type": "boolean"
  631. },
  632. "compare": {
  633. "type": "boolean"
  634. },
  635. "details": {
  636. "type": "boolean"
  637. },
  638. "history": {
  639. "type": "boolean"
  640. },
  641. "remote": {
  642. "type": "boolean"
  643. }
  644. }
  645. }
  646. ]
  647. },
  648. "editorGroup": {
  649. "anyOf": [
  650. {
  651. "enum": [
  652. false
  653. ]
  654. },
  655. {
  656. "type": "object",
  657. "properties": {
  658. "blame": {
  659. "type": "boolean"
  660. },
  661. "compare": {
  662. "type": "boolean"
  663. }
  664. }
  665. }
  666. ]
  667. },
  668. "editorTab": {
  669. "anyOf": [
  670. {
  671. "enum": [
  672. false
  673. ]
  674. },
  675. {
  676. "type": "object",
  677. "properties": {
  678. "clipboard": {
  679. "type": "boolean"
  680. },
  681. "compare": {
  682. "type": "boolean"
  683. },
  684. "history": {
  685. "type": "boolean"
  686. },
  687. "remote": {
  688. "type": "boolean"
  689. }
  690. }
  691. }
  692. ]
  693. },
  694. "explorer": {
  695. "anyOf": [
  696. {
  697. "enum": [
  698. false
  699. ]
  700. },
  701. {
  702. "type": "object",
  703. "properties": {
  704. "clipboard": {
  705. "type": "boolean"
  706. },
  707. "compare": {
  708. "type": "boolean"
  709. },
  710. "history": {
  711. "type": "boolean"
  712. },
  713. "remote": {
  714. "type": "boolean"
  715. }
  716. }
  717. }
  718. ]
  719. },
  720. "scmGroup": {
  721. "anyOf": [
  722. {
  723. "enum": [
  724. false
  725. ]
  726. },
  727. {
  728. "type": "object",
  729. "properties": {
  730. "compare": {
  731. "type": "boolean"
  732. },
  733. "openClose": {
  734. "type": "boolean"
  735. },
  736. "stash": {
  737. "type": "boolean"
  738. },
  739. "stashInline": {
  740. "type": "boolean"
  741. }
  742. }
  743. }
  744. ]
  745. },
  746. "scmItem": {
  747. "anyOf": [
  748. {
  749. "enum": [
  750. false
  751. ]
  752. },
  753. {
  754. "type": "object",
  755. "properties": {
  756. "clipboard": {
  757. "type": "boolean"
  758. },
  759. "compare": {
  760. "type": "boolean"
  761. },
  762. "history": {
  763. "type": "boolean"
  764. },
  765. "remote": {
  766. "type": "boolean"
  767. },
  768. "stash": {
  769. "type": "boolean"
  770. }
  771. }
  772. }
  773. ]
  774. }
  775. }
  776. }
  777. ],
  778. "default": {
  779. "editor": {
  780. "blame": false,
  781. "clipboard": true,
  782. "compare": true,
  783. "details": false,
  784. "history": false,
  785. "remote": false
  786. },
  787. "editorGroup": {
  788. "blame": true,
  789. "compare": true
  790. },
  791. "editorTab": {
  792. "clipboard": true,
  793. "compare": true,
  794. "history": true,
  795. "remote": true
  796. },
  797. "explorer": {
  798. "clipboard": true,
  799. "compare": true,
  800. "history": true,
  801. "remote": true
  802. },
  803. "scmGroup": {
  804. "compare": true,
  805. "openClose": true,
  806. "stash": true,
  807. "stashInline": true
  808. },
  809. "scmItem": {
  810. "clipboard": true,
  811. "compare": true,
  812. "history": true,
  813. "remote": true,
  814. "stash": true
  815. }
  816. },
  817. "markdownDescription": "Specifies which commands will be added to which menus",
  818. "scope": "window"
  819. },
  820. "gitlens.mode.active": {
  821. "type": "string",
  822. "markdownDescription": "Specifies the active GitLens mode, if any",
  823. "scope": "window"
  824. },
  825. "gitlens.mode.statusBar.enabled": {
  826. "type": "boolean",
  827. "default": true,
  828. "markdownDescription": "Specifies whether to provide the active GitLens mode in the status bar",
  829. "scope": "window"
  830. },
  831. "gitlens.mode.statusBar.alignment": {
  832. "type": "string",
  833. "default": "right",
  834. "enum": [
  835. "left",
  836. "right"
  837. ],
  838. "enumDescriptions": [
  839. "Aligns to the left",
  840. "Aligns to the right"
  841. ],
  842. "markdownDescription": "Specifies the active GitLens mode alignment in the status bar",
  843. "scope": "window"
  844. },
  845. "gitlens.modes": {
  846. "type": "object",
  847. "properties": {
  848. "zen": {
  849. "type": "object",
  850. "properties": {
  851. "name": {
  852. "type": "string",
  853. "description": "Specifies the friendly name of this user-defined mode"
  854. },
  855. "statusBarItemName": {
  856. "type": "string",
  857. "description": "Specifies the name shown in the status bar when this user-defined mode is active"
  858. },
  859. "description": {
  860. "type": "string",
  861. "description": "Specifies the description of this user-defined mode"
  862. },
  863. "codeLens": {
  864. "type": "boolean",
  865. "description": "Specifies whether to show any Git code lens when this user-defined mode is active"
  866. },
  867. "currentLine": {
  868. "type": "boolean",
  869. "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active"
  870. },
  871. "hovers": {
  872. "type": "boolean",
  873. "description": "Specifies whether to show any hovers when this user-defined mode is active"
  874. },
  875. "statusBar": {
  876. "type": "boolean",
  877. "description": "Specifies whether to show blame information in the status bar when this user-defined mode is active"
  878. },
  879. "views": {
  880. "type": "boolean",
  881. "description": "Specifies whether to show any GitLens views when this user-defined mode is active"
  882. }
  883. }
  884. },
  885. "review": {
  886. "type": "object",
  887. "properties": {
  888. "name": {
  889. "type": "string",
  890. "description": "Specifies the friendly name of this user-defined mode"
  891. },
  892. "statusBarItemName": {
  893. "type": "string",
  894. "description": "Specifies the name shown in the status bar when this user-defined mode is active"
  895. },
  896. "description": {
  897. "type": "string",
  898. "description": "Specifies the description of this user-defined mode"
  899. },
  900. "codeLens": {
  901. "type": "boolean",
  902. "description": "Specifies whether to show any Git code lens when this user-defined mode is active"
  903. },
  904. "currentLine": {
  905. "type": "boolean",
  906. "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active"
  907. },
  908. "hovers": {
  909. "type": "boolean",
  910. "description": "Specifies whether to show any hovers when this user-defined mode is active"
  911. },
  912. "statusBar": {
  913. "type": "boolean",
  914. "description": "Specifies whether to show blame information in the status bar when this user-defined mode is active"
  915. },
  916. "views": {
  917. "type": "boolean",
  918. "description": "Specifies whether to show any GitLens views when this user-defined mode is active"
  919. }
  920. }
  921. }
  922. },
  923. "additionalProperties": {
  924. "type": "object",
  925. "required": [
  926. "name"
  927. ],
  928. "properties": {
  929. "name": {
  930. "type": "string",
  931. "description": "Specifies the friendly name of this user-defined mode"
  932. },
  933. "statusBarItemName": {
  934. "type": "string",
  935. "description": "Specifies the name shown in the status bar when this user-defined mode is active"
  936. },
  937. "description": {
  938. "type": "string",
  939. "description": "Specifies the description of this user-defined mode"
  940. },
  941. "annotations": {
  942. "type": "string",
  943. "enum": [
  944. "blame",
  945. "heatmap",
  946. "recentChanges"
  947. ],
  948. "enumDescriptions": [
  949. "Shows the gutter blame annotations",
  950. "Shows the gutter heatmap annotations",
  951. "Shows the recently changed lines annotations"
  952. ],
  953. "description": "Specifies which (if any) file annotations will be shown when this user-defined mode is active"
  954. },
  955. "codeLens": {
  956. "type": "boolean",
  957. "description": "Specifies whether to show any Git code lens when this user-defined mode is active"
  958. },
  959. "currentLine": {
  960. "type": "boolean",
  961. "description": "Specifies whether to show a blame annotation for the current line when this user-defined mode is active"
  962. },
  963. "hovers": {
  964. "type": "boolean",
  965. "description": "Specifies whether to show any hovers when this user-defined mode is active"
  966. },
  967. "statusBar": {
  968. "type": "boolean",
  969. "description": "Specifies whether to show blame information in the status bar when this user-defined mode is active"
  970. },
  971. "views": {
  972. "type": "boolean",
  973. "description": "Specifies whether to show any GitLens views when this user-defined mode is active"
  974. }
  975. }
  976. },
  977. "default": {
  978. "zen": {
  979. "name": "Zen",
  980. "statusBarItemName": "Zen",
  981. "description": "for a zen-like experience, disables many visual features",
  982. "codeLens": false,
  983. "currentLine": false,
  984. "hovers": false,
  985. "statusBar": false
  986. },
  987. "review": {
  988. "name": "Review",
  989. "statusBarItemName": "Reviewing",
  990. "description": "for reviewing code, enables many visual features",
  991. "codeLens": true,
  992. "currentLine": true,
  993. "hovers": true
  994. }
  995. },
  996. "markdownDescription": "Specifies the user-defined GitLens modes",
  997. "scope": "window"
  998. },
  999. "gitlens.outputLevel": {
  1000. "type": "string",
  1001. "default": "errors",
  1002. "enum": [
  1003. "silent",
  1004. "errors",
  1005. "verbose",
  1006. "debug"
  1007. ],
  1008. "enumDescriptions": [
  1009. "Logs nothing",
  1010. "Logs only errors",
  1011. "Logs all errors, warnings, and messages",
  1012. "Logs all errors, warnings, and messages with extra context useful for debugging"
  1013. ],
  1014. "markdownDescription": "Specifies how much (if any) output will be sent to the GitLens output channel",
  1015. "scope": "window"
  1016. },
  1017. "gitlens.recentChanges.highlight.locations": {
  1018. "type": "array",
  1019. "default": [
  1020. "gutter",
  1021. "line",
  1022. "overview"
  1023. ],
  1024. "items": {
  1025. "type": "string",
  1026. "enum": [
  1027. "gutter",
  1028. "line",
  1029. "overview"
  1030. ],
  1031. "enumDescriptions": [
  1032. "Adds a gutter glyph",
  1033. "Adds a full-line highlight background color",
  1034. "Adds a decoration to the overview ruler (scroll bar)"
  1035. ]
  1036. },
  1037. "minItems": 1,
  1038. "maxItems": 3,
  1039. "uniqueItems": true,
  1040. "markdownDescription": "Specifies where the highlights of the recently changed lines will be shown",
  1041. "scope": "window"
  1042. },
  1043. "gitlens.recentChanges.toggleMode": {
  1044. "type": "string",
  1045. "default": "file",
  1046. "enum": [
  1047. "file",
  1048. "window"
  1049. ],
  1050. "enumDescriptions": [
  1051. "Toggles each file individually",
  1052. "Toggles the window, i.e. all files at once"
  1053. ],
  1054. "markdownDescription": "Specifies how the recently changed lines annotations will be toggled",
  1055. "scope": "window"
  1056. },
  1057. "gitlens.remotes": {
  1058. "type": "array",
  1059. "default": null,
  1060. "items": {
  1061. "type": "object",
  1062. "required": [
  1063. "type",
  1064. "domain"
  1065. ],
  1066. "properties": {
  1067. "type": {
  1068. "type": "string",
  1069. "enum": [
  1070. "Bitbucket",
  1071. "BitbucketServer",
  1072. "Custom",
  1073. "GitHub",
  1074. "GitLab"
  1075. ],
  1076. "description": "Specifies the type of the custom remote service"
  1077. },
  1078. "domain": {
  1079. "type": "string",
  1080. "description": "Specifies the domain name of the custom remote service"
  1081. },
  1082. "name": {
  1083. "type": "string",
  1084. "description": "Specifies an optional friendly name for the custom remote service"
  1085. },
  1086. "protocol": {
  1087. "type": "string",
  1088. "default": "https",
  1089. "description": "Specifies an optional url protocol for the custom remote service"
  1090. },
  1091. "urls": {
  1092. "type": "object",
  1093. "required": [
  1094. "repository",
  1095. "branches",
  1096. "branch",
  1097. "commit",
  1098. "file",
  1099. "fileInCommit",
  1100. "fileInBranch",
  1101. "fileLine",
  1102. "fileRange"
  1103. ],
  1104. "properties": {
  1105. "repository": {
  1106. "type": "string",
  1107. "description": "Specifies the format of a respository url for the custom remote service\nAvailable tokens\n ${repo}` — repository path"
  1108. },
  1109. "branches": {
  1110. "type": "string",
  1111. "description": "Specifies the format of a branches url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${branch}` — branch"
  1112. },
  1113. "branch": {
  1114. "type": "string",
  1115. "description": "Specifies the format of a branch url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${branch}` — branch"
  1116. },
  1117. "commit": {
  1118. "type": "string",
  1119. "description": "Specifies the format of a commit url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${id}` — commit id"
  1120. },
  1121. "file": {
  1122. "type": "string",
  1123. "description": "Specifies the format of a file url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${file}` — file name\n ${line}` — formatted line information"
  1124. },
  1125. "fileInBranch": {
  1126. "type": "string",
  1127. "description": "Specifies the format of a branch file url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${file}` — file name\n ${branch}` — branch\n ${line}` — formatted line information"
  1128. },
  1129. "fileInCommit": {
  1130. "type": "string",
  1131. "description": "Specifies the format of a commit file url for the custom remote service\nAvailable tokens\n ${repo}` — repository path\n ${file}` — file name\n ${id}` — commit id\n ${line}` — formatted line information"
  1132. },
  1133. "fileLine": {
  1134. "type": "string",
  1135. "description": "Specifies the format of a line in a file url for the custom remote service\nAvailable tokens\n ${line}` — line"
  1136. },
  1137. "fileRange": {
  1138. "type": "string",
  1139. "description": "Specifies the format of a range in a file url for the custom remote service\nAvailable tokens\n ${start}` — starting line\n ${end}` — ending line"
  1140. }
  1141. }
  1142. },
  1143. "description": "Specifies the url formats of the custom remote service"
  1144. }
  1145. },
  1146. "uniqueItems": true,
  1147. "markdownDescription": "Specifies user-defined remote (code-hosting) services or custom domains for built-in remote services",
  1148. "scope": "resource"
  1149. },
  1150. "gitlens.settings.mode": {
  1151. "type": "string",
  1152. "default": "simple",
  1153. "enum": [
  1154. "simple",
  1155. "advanced"
  1156. ],
  1157. "enumDescriptions": [
  1158. "Only displays common settings",
  1159. "Displays all settings"
  1160. ],
  1161. "markdownDescription": "Specifies the display mode of the interactive settings editor",
  1162. "scope": "window"
  1163. },
  1164. "gitlens.showWhatsNewAfterUpgrades": {
  1165. "type": "boolean",
  1166. "default": true,
  1167. "markdownDescription": "Specifies whether to show What's New after upgrading to new feature releases",
  1168. "scope": "window"
  1169. },
  1170. "gitlens.statusBar.alignment": {
  1171. "type": "string",
  1172. "default": "right",
  1173. "enum": [
  1174. "left",
  1175. "right"
  1176. ],
  1177. "enumDescriptions": [
  1178. "Aligns to the left",
  1179. "Aligns to the right"
  1180. ],
  1181. "markdownDescription": "Specifies the blame alignment in the status bar",
  1182. "scope": "window"
  1183. },
  1184. "gitlens.statusBar.command": {
  1185. "type": "string",
  1186. "default": "gitlens.showQuickCommitDetails",
  1187. "enum": [
  1188. "gitlens.toggleFileBlame",
  1189. "gitlens.diffWithPrevious",
  1190. "gitlens.diffWithWorking",
  1191. "gitlens.toggleCodeLens",
  1192. "gitlens.showQuickCommitDetails",
  1193. "gitlens.showQuickCommitFileDetails",
  1194. "gitlens.showQuickFileHistory",
  1195. "gitlens.showQuickRepoHistory"
  1196. ],
  1197. "enumDescriptions": [
  1198. "Toggles file blame annotations",
  1199. "Compares the current line commit with the previous",
  1200. "Compares the current line commit with the working tree",
  1201. "Toggles Git code lens",
  1202. "Shows a commit details quick pick",
  1203. "Shows a commit file details quick pick",
  1204. "Shows a file history quick pick",
  1205. "Shows a branch history quick pick"
  1206. ],
  1207. "markdownDescription": "Specifies the command to be executed when the blame status bar item is clicked",
  1208. "scope": "window"
  1209. },
  1210. "gitlens.statusBar.dateFormat": {
  1211. "type": "string",
  1212. "default": null,
  1213. "markdownDescription": "Specifies the date format of absolute dates shown in the blame information in the status bar. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
  1214. "scope": "window"
  1215. },
  1216. "gitlens.statusBar.enabled": {
  1217. "type": "boolean",
  1218. "default": true,
  1219. "markdownDescription": "Specifies whether to provide blame information in the status bar",
  1220. "scope": "window"
  1221. },
  1222. "gitlens.statusBar.format": {
  1223. "type": "string",
  1224. "default": "${authorAgoOrDate}",
  1225. "markdownDescription": "Specifies the format of the gutter blame annotations. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\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 - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  1226. "scope": "window"
  1227. },
  1228. "gitlens.statusBar.reduceFlicker": {
  1229. "type": "boolean",
  1230. "default": false,
  1231. "markdownDescription": "Specifies whether to avoid clearing the previous blame information when changing lines to reduce status bar \"flashing\"",
  1232. "scope": "window"
  1233. },
  1234. "gitlens.strings.codeLens.unsavedChanges.recentChangeAndAuthors": {
  1235. "type": "string",
  1236. "default": "Unsaved changes (cannot determine recent change or authors)",
  1237. "markdownDescription": "Specifies the string to be shown in place of both the _recent change_ and _authors_ code lens when there are unsaved changes",
  1238. "scope": "window"
  1239. },
  1240. "gitlens.strings.codeLens.unsavedChanges.recentChangeOnly": {
  1241. "type": "string",
  1242. "default": "Unsaved changes (cannot determine recent change)",
  1243. "markdownDescription": "Specifies the string to be shown in place of the _recent change_ code lens when there are unsaved changes",
  1244. "scope": "window"
  1245. },
  1246. "gitlens.strings.codeLens.unsavedChanges.authorsOnly": {
  1247. "type": "string",
  1248. "default": "Unsaved changes (cannot determine authors)",
  1249. "markdownDescription": "Specifies the string to be shown in place of the _authors_ code lens when there are unsaved changes",
  1250. "scope": "window"
  1251. },
  1252. "gitlens.views.commitFileFormat": {
  1253. "type": "string",
  1254. "default": "${file}",
  1255. "markdownDescription": "Specifies the format of a committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path",
  1256. "scope": "window"
  1257. },
  1258. "gitlens.views.commitFileDescriptionFormat": {
  1259. "type": "string",
  1260. "default": "${directory}",
  1261. "markdownDescription": "Specifies the description format of a committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path",
  1262. "scope": "window"
  1263. },
  1264. "gitlens.views.commitFormat": {
  1265. "type": "string",
  1266. "default": "${message}",
  1267. "markdownDescription": "Specifies the format of committed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  1268. "scope": "window"
  1269. },
  1270. "gitlens.views.commitDescriptionFormat": {
  1271. "type": "string",
  1272. "default": "${changes • }${authorAgoOrDate}",
  1273. "markdownDescription": "Specifies the description format of committed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  1274. "scope": "window"
  1275. },
  1276. "gitlens.views.compare.avatars": {
  1277. "type": "boolean",
  1278. "default": true,
  1279. "markdownDescription": "Specifies whether to show avatar images instead of commit (or status) icons in the _Compare_ view",
  1280. "scope": "window"
  1281. },
  1282. "gitlens.views.compare.enabled": {
  1283. "type": "boolean",
  1284. "default": true,
  1285. "markdownDescription": "Specifies whether to show the _Compare_ view",
  1286. "scope": "window"
  1287. },
  1288. "gitlens.views.compare.files.compact": {
  1289. "type": "boolean",
  1290. "default": true,
  1291. "markdownDescription": "Specifies whether to compact (flatten) unnecessary file nesting in the _Compare_ view. Only applies when `#gitlens.views.compare.files.layout#` is set to `tree` or `auto`",
  1292. "scope": "window"
  1293. },
  1294. "gitlens.views.compare.files.layout": {
  1295. "type": "string",
  1296. "default": "auto",
  1297. "enum": [
  1298. "auto",
  1299. "list",
  1300. "tree"
  1301. ],
  1302. "enumDescriptions": [
  1303. "Automatically switches between displaying files as a `tree` or `list` based on the `#gitlens.views.compare.files.threshold#` value and the number of files at each nesting level",
  1304. "Displays files as a list",
  1305. "Displays files as a tree"
  1306. ],
  1307. "markdownDescription": "Specifies how the _Compare_ view will display files",
  1308. "scope": "window"
  1309. },
  1310. "gitlens.views.compare.files.threshold": {
  1311. "type": "number",
  1312. "default": 5,
  1313. "markdownDescription": "Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Compare_ view. Only applies when `#gitlens.views.compare.files.layout#` is set to `auto`",
  1314. "scope": "window"
  1315. },
  1316. "gitlens.views.compare.location": {
  1317. "type": "string",
  1318. "default": "gitlens",
  1319. "enum": [
  1320. "gitlens",
  1321. "explorer",
  1322. "scm"
  1323. ],
  1324. "enumDescriptions": [
  1325. "Adds to the GitLens side bar",
  1326. "Adds to the Explorer side bar",
  1327. "Adds to the Source Control side bar"
  1328. ],
  1329. "markdownDescription": "Specifies where to show the _Compare_ view",
  1330. "scope": "window"
  1331. },
  1332. "gitlens.views.defaultItemLimit": {
  1333. "type": "number",
  1334. "default": 10,
  1335. "markdownDescription": "Specifies the default number of items to show in a view list. Use 0 to specify no limit",
  1336. "scope": "window"
  1337. },
  1338. "gitlens.views.fileHistory.avatars": {
  1339. "type": "boolean",
  1340. "default": true,
  1341. "markdownDescription": "Specifies whether to show avatar images instead of status icons in the _File History_ view",
  1342. "scope": "window"
  1343. },
  1344. "gitlens.views.fileHistory.enabled": {
  1345. "type": "boolean",
  1346. "default": true,
  1347. "markdownDescription": "Specifies whether to show the _File History_ view",
  1348. "scope": "window"
  1349. },
  1350. "gitlens.views.fileHistory.location": {
  1351. "type": "string",
  1352. "default": "gitlens",
  1353. "enum": [
  1354. "gitlens",
  1355. "explorer",
  1356. "scm"
  1357. ],
  1358. "enumDescriptions": [
  1359. "Adds to the GitLens side bar",
  1360. "Adds to the Explorer side bar",
  1361. "Adds to the Source Control side bar"
  1362. ],
  1363. "markdownDescription": "Specifies where to show the _File History_ view",
  1364. "scope": "window"
  1365. },
  1366. "gitlens.views.lineHistory.avatars": {
  1367. "type": "boolean",
  1368. "default": true,
  1369. "markdownDescription": "Specifies whether to show avatar images instead of status icons in the _Line History_ view",
  1370. "scope": "window"
  1371. },
  1372. "gitlens.views.lineHistory.enabled": {
  1373. "type": "boolean",
  1374. "default": true,
  1375. "markdownDescription": "Specifies whether to show the _Line History_ view",
  1376. "scope": "window"
  1377. },
  1378. "gitlens.views.lineHistory.location": {
  1379. "type": "string",
  1380. "default": "gitlens",
  1381. "enum": [
  1382. "gitlens",
  1383. "explorer",
  1384. "scm"
  1385. ],
  1386. "enumDescriptions": [
  1387. "Adds to the GitLens side bar",
  1388. "Adds to the Explorer side bar",
  1389. "Adds to the Source Control side bar"
  1390. ],
  1391. "markdownDescription": "Specifies where to show the _Line History_ view",
  1392. "scope": "window"
  1393. },
  1394. "gitlens.views.repositories.autoRefresh": {
  1395. "type": "boolean",
  1396. "default": true,
  1397. "markdownDescription": "Specifies whether to automatically refresh the _Repositories_ view when the repository or the file system changes",
  1398. "scope": "window"
  1399. },
  1400. "gitlens.views.repositories.autoReveal": {
  1401. "type": "boolean",
  1402. "default": true,
  1403. "markdownDescription": "Specifies whether to automatically reveal repositories in the _Repositories_ view when opening files",
  1404. "scope": "window"
  1405. },
  1406. "gitlens.views.repositories.avatars": {
  1407. "type": "boolean",
  1408. "default": true,
  1409. "markdownDescription": "Specifies whether to show avatar images instead of commit (or status) icons in the _Repositories_ view",
  1410. "scope": "window"
  1411. },
  1412. "gitlens.views.repositories.branches.layout": {
  1413. "type": "string",
  1414. "default": "tree",
  1415. "enum": [
  1416. "list",
  1417. "tree"
  1418. ],
  1419. "enumDescriptions": [
  1420. "Displays branches as a list",
  1421. "Displays branches as a tree when branch names contain slashes `/`"
  1422. ],
  1423. "markdownDescription": "Specifies how the _Repositories_ view will display branches",
  1424. "scope": "window"
  1425. },
  1426. "gitlens.views.repositories.compact": {
  1427. "type": "boolean",
  1428. "default": false,
  1429. "markdownDescription": "Specifies whether to show the _Repositories_ view in a compact display density",
  1430. "scope": "window"
  1431. },
  1432. "gitlens.views.repositories.enabled": {
  1433. "type": "boolean",
  1434. "default": true,
  1435. "markdownDescription": "Specifies whether to show the _Repositories_ view",
  1436. "scope": "window"
  1437. },
  1438. "gitlens.views.repositories.files.compact": {
  1439. "type": "boolean",
  1440. "default": true,
  1441. "markdownDescription": "Specifies whether to compact (flatten) unnecessary file nesting in the _Repositories_ view. Only applies when `#gitlens.views.repositories.files.layout#` is set to `tree` or `auto`",
  1442. "scope": "window"
  1443. },
  1444. "gitlens.views.repositories.files.layout": {
  1445. "type": "string",
  1446. "default": "auto",
  1447. "enum": [
  1448. "auto",
  1449. "list",
  1450. "tree"
  1451. ],
  1452. "enumDescriptions": [
  1453. "Automatically switches between displaying files as a `tree` or `list` based on the `#gitlens.views.repositories.files.threshold#` value and the number of files at each nesting level",
  1454. "Displays files as a list",
  1455. "Displays files as a tree"
  1456. ],
  1457. "markdownDescription": "Specifies how the _Repositories_ view will display files",
  1458. "scope": "window"
  1459. },
  1460. "gitlens.views.repositories.files.threshold": {
  1461. "type": "number",
  1462. "default": 5,
  1463. "markdownDescription": "Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Repositories_ view. Only applies when `#gitlens.views.repositories.files.layout#` is set to `auto`",
  1464. "scope": "window"
  1465. },
  1466. "gitlens.views.repositories.includeWorkingTree": {
  1467. "type": "boolean",
  1468. "default": true,
  1469. "markdownDescription": "Specifies whether to include working tree file status for each repository in the _Repositories_ view",
  1470. "scope": "window"
  1471. },
  1472. "gitlens.views.repositories.location": {
  1473. "type": "string",
  1474. "default": "gitlens",
  1475. "enum": [
  1476. "gitlens",
  1477. "explorer",
  1478. "scm"
  1479. ],
  1480. "enumDescriptions": [
  1481. "Adds to the GitLens side bar",
  1482. "Adds to the Explorer side bar",
  1483. "Adds to the Source Control side bar"
  1484. ],
  1485. "markdownDescription": "Specifies where to show the _Repositories_ view",
  1486. "scope": "window"
  1487. },
  1488. "gitlens.views.repositories.showTrackingBranch": {
  1489. "type": "boolean",
  1490. "default": true,
  1491. "markdownDescription": "Specifies whether to show the tracking branch when displaying local branches in the _Repositories_ view",
  1492. "scope": "window"
  1493. },
  1494. "gitlens.views.search.avatars": {
  1495. "type": "boolean",
  1496. "default": true,
  1497. "markdownDescription": "Specifies whether to show avatar images instead of commit (or status) icons in the _Search Commits_ view",
  1498. "scope": "window"
  1499. },
  1500. "gitlens.views.search.enabled": {
  1501. "type": "boolean",
  1502. "default": true,
  1503. "markdownDescription": "Specifies whether to show the _Search Commits_ view",
  1504. "scope": "window"
  1505. },
  1506. "gitlens.views.search.files.compact": {
  1507. "type": "boolean",
  1508. "default": true,
  1509. "markdownDescription": "Specifies whether to compact (flatten) unnecessary file nesting in the _Search Commits_ view. Only applies when `#gitlens.views.search.files.layout#` is set to `tree` or `auto`",
  1510. "scope": "window"
  1511. },
  1512. "gitlens.views.search.files.layout": {
  1513. "type": "string",
  1514. "default": "auto",
  1515. "enum": [
  1516. "auto",
  1517. "list",
  1518. "tree"
  1519. ],
  1520. "enumDescriptions": [
  1521. "Automatically switches between displaying files as a `tree` or `list` based on the `#gitlens.views.search.files.threshold#` value and the number of files at each nesting level",
  1522. "Displays files as a list",
  1523. "Displays files as a tree"
  1524. ],
  1525. "markdownDescription": "Specifies how the _Search Commits_ view will display files",
  1526. "scope": "window"
  1527. },
  1528. "gitlens.views.search.files.threshold": {
  1529. "type": "number",
  1530. "default": 5,
  1531. "markdownDescription": "Specifies when to switch between displaying files as a `tree` or `list` based on the number of files in a nesting level in the _Search Commits_ view. Only applies when `#gitlens.views.search.files.layout#` is set to `auto`",
  1532. "scope": "window"
  1533. },
  1534. "gitlens.views.search.location": {
  1535. "type": "string",
  1536. "default": "gitlens",
  1537. "enum": [
  1538. "gitlens",
  1539. "explorer",
  1540. "scm"
  1541. ],
  1542. "enumDescriptions": [
  1543. "Adds to the GitLens side bar",
  1544. "Adds to the Explorer side bar",
  1545. "Adds to the Source Control side bar"
  1546. ],
  1547. "markdownDescription": "Specifies where to show the _Search Commits_ view",
  1548. "scope": "window"
  1549. },
  1550. "gitlens.views.showRelativeDateMarkers": {
  1551. "type": "boolean",
  1552. "default": true,
  1553. "markdownDescription": "Specifies whether to show relative date markers (_Less than a week ago_, _Over a week ago_, _Over a month ago_, etc) on revision (commit) histories in the views",
  1554. "scope": "window"
  1555. },
  1556. "gitlens.views.stashFileFormat": {
  1557. "type": "string",
  1558. "default": "${file}",
  1559. "markdownDescription": "Specifies the format of a stashed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path",
  1560. "scope": "window"
  1561. },
  1562. "gitlens.views.stashFileDescriptionFormat": {
  1563. "type": "string",
  1564. "default": "${directory}",
  1565. "markdownDescription": "Specifies the description format of a stashed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path",
  1566. "scope": "window"
  1567. },
  1568. "gitlens.views.stashFormat": {
  1569. "type": "string",
  1570. "default": "${message}",
  1571. "markdownDescription": "Specifies the format of stashed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  1572. "scope": "window"
  1573. },
  1574. "gitlens.views.stashDescriptionFormat": {
  1575. "type": "string",
  1576. "default": "${changes • }${agoOrDate}",
  1577. "markdownDescription": "Specifies the description format of stashed changes in the views. See the [GitLens docs](https://github.com/eamodio/vscode-gitlens/wiki/Advanced-Formatting) for advanced formatting\n- Available tokens\n - `${id}` — commit id\n - `${author}` — commit author\n - `${email}` — commit author e-mail\n - `${message}` — commit message\n - `${ago}` — relative commit date (e.g. 1 day ago)\n - `${date}` — formatted commit date (format specified by `#gitlens.defaultDateFormat#`)\n - `${agoOrDate}` — commit date specified by `#gitlens.defaultDateStyle#`\n - `${authorAgo}` — commit author, relative commit date\n - `${authorAgoOrDate}` — commit author, commit date specified by `#gitlens.defaultDateStyle#`",
  1578. "scope": "window"
  1579. },
  1580. "gitlens.views.statusFileFormat": {
  1581. "type": "string",
  1582. "default": "${working }${file}",
  1583. "markdownDescription": "Specifies the format of the status of a working or committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path\n - `${working}` — optional indicator if the file is uncommitted",
  1584. "scope": "window"
  1585. },
  1586. "gitlens.views.statusFileDescriptionFormat": {
  1587. "type": "string",
  1588. "default": "${directory}",
  1589. "markdownDescription": "Specifies the description format of the status of a working or committed file in the views\n- Available tokens\n - `${directory}` — directory name\n - `${file}` — file name\n - `${filePath}` — formatted file name and path\n - `${path}` — full file path\n - `${working}` — optional indicator if the file is uncommitted",
  1590. "scope": "window"
  1591. },
  1592. "gitlens.advanced.abbreviatedShaLength": {
  1593. "type": "number",
  1594. "default": "7",
  1595. "markdownDescription": "Specifies the length of abbreviated commit ids (shas)",
  1596. "scope": "window"
  1597. },
  1598. "gitlens.advanced.blame.customArguments": {
  1599. "type": "array",
  1600. "default": null,
  1601. "items": {
  1602. "type": "string"
  1603. },
  1604. "markdownDescription": "Specifies additional arguments to pass to the `git blame` command",
  1605. "scope": "resource"
  1606. },
  1607. "gitlens.advanced.blame.delayAfterEdit": {
  1608. "type": "number",
  1609. "default": 5000,
  1610. "markdownDescription": "Specifies the time (in milliseconds) to wait before re-blaming an unsaved document after an edit. Use 0 to specify an infinite wait",
  1611. "scope": "window"
  1612. },
  1613. "gitlens.advanced.blame.sizeThresholdAfterEdit": {
  1614. "type": "number",
  1615. "default": 5000,
  1616. "markdownDescription": "Specifies the maximum document size (in lines) allowed to be re-blamed after an edit while still unsaved. Use 0 to specify no maximum",
  1617. "scope": "window"
  1618. },
  1619. "gitlens.advanced.caching.enabled": {
  1620. "type": "boolean",
  1621. "default": true,
  1622. "markdownDescription": "Specifies whether git output will be cached — changing the default is not recommended",
  1623. "scope": "window"
  1624. },
  1625. "gitlens.advanced.fileHistoryFollowsRenames": {
  1626. "type": "boolean",
  1627. "default": true,
  1628. "markdownDescription": "Specifies whether file histories will follow renames — will affect how merge commits are shown in histories",
  1629. "scope": "window"
  1630. },
  1631. "gitlens.advanced.maxListItems": {
  1632. "type": "number",
  1633. "default": 200,
  1634. "markdownDescription": "Specifies the maximum number of items to show in a list. Use 0 to specify no maximum",
  1635. "scope": "window"
  1636. },
  1637. "gitlens.advanced.messages": {
  1638. "type": "object",
  1639. "default": {
  1640. "suppressCommitHasNoPreviousCommitWarning": false,
  1641. "suppressCommitNotFoundWarning": false,
  1642. "suppressFileNotUnderSourceControlWarning": false,
  1643. "suppressGitDisabledWarning": false,
  1644. "suppressGitVersionWarning": false,
  1645. "suppressLineUncommittedWarning": false,
  1646. "suppressNoRepositoryWarning": false,
  1647. "suppressSupportGitLensNotification": false
  1648. },
  1649. "properties": {
  1650. "suppressCommitHasNoPreviousCommitWarning": {
  1651. "type": "boolean",
  1652. "default": false
  1653. },
  1654. "suppressCommitNotFoundWarning": {
  1655. "type": "boolean",
  1656. "default": false
  1657. },
  1658. "suppressFileNotUnderSourceControlWarning": {
  1659. "type": "boolean",
  1660. "default": false
  1661. },
  1662. "suppressGitDisabledWarning": {
  1663. "type": "boolean",
  1664. "default": false
  1665. },
  1666. "suppressGitVersionWarning": {
  1667. "type": "boolean",
  1668. "default": false
  1669. },
  1670. "suppressLineUncommittedWarning": {
  1671. "type": "boolean",
  1672. "default": false
  1673. },
  1674. "suppressNoRepositoryWarning": {
  1675. "type": "boolean",
  1676. "default": false
  1677. },
  1678. "suppressSupportGitLensNotification": {
  1679. "type": "boolean",
  1680. "default": false
  1681. }
  1682. },
  1683. "markdownDescription": "Specifies which messages should be suppressed",
  1684. "scope": "window"
  1685. },
  1686. "gitlens.advanced.quickPick.closeOnFocusOut": {
  1687. "type": "boolean",
  1688. "default": true,
  1689. "markdownDescription": "Specifies whether to close QuickPick menus when focus is lost",
  1690. "scope": "window"
  1691. },
  1692. "gitlens.advanced.repositorySearchDepth": {
  1693. "type": "number",
  1694. "default": 1,
  1695. "markdownDescription": "Specifies how many folders deep to search for repositories",
  1696. "scope": "resource"
  1697. },
  1698. "gitlens.advanced.telemetry.enabled": {
  1699. "type": "boolean",
  1700. "default": true,
  1701. "markdownDescription": "Specifies whether to enable GitLens telemetry (even if enabled still abides by the overall `#telemetry.enableTelemetry#` setting",
  1702. "scope": "window"
  1703. }
  1704. }
  1705. },
  1706. "colors": [
  1707. {
  1708. "id": "gitlens.gutterBackgroundColor",
  1709. "description": "Specifies the background color of the gutter blame annotations",
  1710. "defaults": {
  1711. "dark": "#FFFFFF13",
  1712. "light": "#0000000C",
  1713. "highContrast": "#FFFFFF13"
  1714. }
  1715. },
  1716. {
  1717. "id": "gitlens.gutterForegroundColor",
  1718. "description": "Specifies the foreground color of the gutter blame annotations",
  1719. "defaults": {
  1720. "dark": "#BEBEBE",
  1721. "light": "#747474",
  1722. "highContrast": "#BEBEBE"
  1723. }
  1724. },
  1725. {
  1726. "id": "gitlens.gutterUncommittedForegroundColor",
  1727. "description": "Specifies the foreground color of an uncommitted line in the gutter blame annotations",
  1728. "defaults": {
  1729. "dark": "#00BCF299",
  1730. "light": "#00BCF299",
  1731. "highContrast": "#00BCF2FF"
  1732. }
  1733. },
  1734. {
  1735. "id": "gitlens.trailingLineBackgroundColor",
  1736. "description": "Specifies the background color of the blame annotation for the current line",
  1737. "defaults": {
  1738. "dark": "#00000000",
  1739. "light": "#00000000",
  1740. "highContrast": "#00000000"
  1741. }
  1742. },
  1743. {
  1744. "id": "gitlens.trailingLineForegroundColor",
  1745. "description": "Specifies the foreground color of the blame annotation for the current line",
  1746. "defaults": {
  1747. "dark": "#99999959",
  1748. "light": "#99999959",
  1749. "highContrast": "#99999999"
  1750. }
  1751. },
  1752. {
  1753. "id": "gitlens.lineHighlightBackgroundColor",
  1754. "description": "Specifies the background color of the associated line highlights in blame annotations",
  1755. "defaults": {
  1756. "dark": "#00BCF233",
  1757. "light": "#00BCF233",
  1758. "highContrast": "#00BCF233"
  1759. }
  1760. },
  1761. {
  1762. "id": "gitlens.lineHighlightOverviewRulerColor",
  1763. "description": "Specifies the overview ruler color of the associated line highlights in blame annotations",
  1764. "defaults": {
  1765. "dark": "#00BCF299",
  1766. "light": "#00BCF299",
  1767. "highContrast": "#00BCF299"
  1768. }
  1769. }
  1770. ],
  1771. "commands": [
  1772. {
  1773. "command": "gitlens.supportGitLens",
  1774. "title": "Support GitLens ❤",
  1775. "category": "GitLens",
  1776. "icon": {
  1777. "dark": "images/dark/icon-heart.svg",
  1778. "light": "images/light/icon-heart.svg"
  1779. }
  1780. },
  1781. {
  1782. "command": "gitlens.showSettingsPage",
  1783. "title": "Open Settings",
  1784. "category": "GitLens",
  1785. "icon": {
  1786. "dark": "images/dark/icon-gear.svg",
  1787. "light": "images/light/icon-gear.svg"
  1788. }
  1789. },
  1790. {
  1791. "command": "gitlens.showWelcomePage",
  1792. "title": "Welcome",
  1793. "category": "GitLens"
  1794. },
  1795. {
  1796. "command": "gitlens.showCompareView",
  1797. "title": "Show Compare View",
  1798. "category": "GitLens"
  1799. },
  1800. {
  1801. "command": "gitlens.showFileHistoryView",
  1802. "title": "Show File History View",
  1803. "category": "GitLens"
  1804. },
  1805. {
  1806. "command": "gitlens.showLineHistoryView",
  1807. "title": "Show Line History View",
  1808. "category": "GitLens"
  1809. },
  1810. {
  1811. "command": "gitlens.showRepositoriesView",
  1812. "title": "Show Repositories View",
  1813. "category": "GitLens"
  1814. },
  1815. {
  1816. "command": "gitlens.showSearchView",
  1817. "title": "Show Search Commits View",
  1818. "category": "GitLens"
  1819. },
  1820. {
  1821. "command": "gitlens.diffDirectory",
  1822. "title": "Directory Compare Working Tree with...",
  1823. "category": "GitLens"
  1824. },
  1825. {
  1826. "command": "gitlens.diffDirectoryWithHead",
  1827. "title": "Directory Compare All Changes",
  1828. "category": "GitLens"
  1829. },
  1830. {
  1831. "command": "gitlens.diffHeadWithBranch",
  1832. "title": "Compare HEAD with Branch or Tag...",
  1833. "category": "GitLens"
  1834. },
  1835. {
  1836. "command": "gitlens.diffWorkingWithBranch",
  1837. "title": "Compare Working Tree with Branch or Tag...",
  1838. "category": "GitLens"
  1839. },
  1840. {
  1841. "command": "gitlens.diffWithBranch",
  1842. "title": "Open Changes with Branch or Tag...",
  1843. "category": "GitLens"
  1844. },
  1845. {
  1846. "command": "gitlens.diffWithNext",
  1847. "title": "Open Changes with Next Revision",
  1848. "category": "GitLens",
  1849. "icon": {
  1850. "dark": "images/dark/icon-next-commit.svg",
  1851. "light": "images/light/icon-next-commit.svg"
  1852. }
  1853. },
  1854. {
  1855. "command": "gitlens.diffWithNextInDiff",
  1856. "title": "Open Changes with Next Revision",
  1857. "category": "GitLens",
  1858. "icon": {
  1859. "dark": "images/dark/icon-next-commit.svg",
  1860. "light": "images/light/icon-next-commit.svg"
  1861. }
  1862. },
  1863. {
  1864. "command": "gitlens.diffWithPrevious",
  1865. "title": "Open Changes with Previous Revision",
  1866. "category": "GitLens",
  1867. "icon": {
  1868. "dark": "images/dark/icon-prev-commit.svg",
  1869. "light": "images/light/icon-prev-commit.svg"
  1870. }
  1871. },
  1872. {
  1873. "command": "gitlens.diffWithPreviousInDiff",
  1874. "title": "Open Changes with Previous Revision",
  1875. "category": "GitLens",
  1876. "icon": {
  1877. "dark": "images/dark/icon-prev-commit.svg",
  1878. "light": "images/light/icon-prev-commit.svg"
  1879. }
  1880. },
  1881. {
  1882. "command": "gitlens.diffLineWithPrevious",
  1883. "title": "Open Line Changes with Previous Revision",
  1884. "category": "GitLens"
  1885. },
  1886. {
  1887. "command": "gitlens.diffWithRevision",
  1888. "title": "Open Changes with Revision...",
  1889. "category": "GitLens",
  1890. "icon": {
  1891. "dark": "images/dark/icon-prev-commit-menu.svg",
  1892. "light": "images/light/icon-prev-commit-menu.svg"
  1893. }
  1894. },
  1895. {
  1896. "command": "gitlens.diffWithWorking",
  1897. "title": "Open Changes with Working File",
  1898. "category": "GitLens",
  1899. "icon": {
  1900. "dark": "images/dark/icon-compare-ref-working.svg",
  1901. "light": "images/light/icon-compare-ref-working.svg"
  1902. }
  1903. },
  1904. {
  1905. "command": "gitlens.diffWithWorkingInDiff",
  1906. "title": "Open Changes with Working File",
  1907. "category": "GitLens",
  1908. "icon": {
  1909. "dark": "images/dark/icon-compare-ref-working.svg",
  1910. "light": "images/light/icon-compare-ref-working.svg"
  1911. }
  1912. },
  1913. {
  1914. "command": "gitlens.diffLineWithWorking",
  1915. "title": "Open Line Changes with Working File",
  1916. "category": "GitLens"
  1917. },
  1918. {
  1919. "command": "gitlens.toggleFileBlame",
  1920. "title": "Toggle File Blame Annotations",
  1921. "category": "GitLens",
  1922. "icon": {
  1923. "dark": "images/dark/icon-git.svg",
  1924. "light": "images/light/icon-git.svg"
  1925. }
  1926. },
  1927. {
  1928. "command": "gitlens.clearFileAnnotations",
  1929. "title": "Clear File Annotations",
  1930. "category": "GitLens",
  1931. "icon": {
  1932. "dark": "images/dark/icon-git-orange.svg",
  1933. "light": "images/light/icon-git-orange.svg"
  1934. }
  1935. },
  1936. {
  1937. "command": "gitlens.computingFileAnnotations",
  1938. "title": "Computing File Annotations...",
  1939. "category": "GitLens",
  1940. "icon": {
  1941. "dark": "images/dark/icon-git-progress.svg",
  1942. "light": "images/light/icon-git-progress.svg"
  1943. }
  1944. },
  1945. {
  1946. "command": "gitlens.toggleFileHeatmap",
  1947. "title": "Toggle File Heatmap Annotations",
  1948. "category": "GitLens",
  1949. "icon": {
  1950. "dark": "images/dark/icon-git.svg",
  1951. "light": "images/light/icon-git.svg"
  1952. }
  1953. },
  1954. {
  1955. "command": "gitlens.toggleFileRecentChanges",
  1956. "title": "Toggle Recent File Changes Annotations",
  1957. "category": "GitLens",
  1958. "icon": {
  1959. "dark": "images/dark/icon-git.svg",
  1960. "light": "images/light/icon-git.svg"
  1961. }
  1962. },
  1963. {
  1964. "command": "gitlens.toggleLineBlame",
  1965. "title": "Toggle Line Blame Annotations",
  1966. "category": "GitLens"
  1967. },
  1968. {
  1969. "command": "gitlens.toggleCodeLens",
  1970. "title": "Toggle Git Code Lens",
  1971. "category": "GitLens"
  1972. },
  1973. {
  1974. "command": "gitlens.switchMode",
  1975. "title": "Switch Mode",
  1976. "category": "GitLens"
  1977. },
  1978. {
  1979. "command": "gitlens.toggleReviewMode",
  1980. "title": "Toggle Review Mode",
  1981. "category": "GitLens"
  1982. },
  1983. {
  1984. "command": "gitlens.toggleZenMode",
  1985. "title": "Toggle Zen Mode",
  1986. "category": "GitLens"
  1987. },
  1988. {
  1989. "command": "gitlens.showCommitSearch",
  1990. "title": "Search Commits",
  1991. "category": "GitLens",
  1992. "icon": {
  1993. "dark": "images/dark/icon-search.svg",
  1994. "light": "images/light/icon-search.svg"
  1995. }
  1996. },
  1997. {
  1998. "command": "gitlens.showLastQuickPick",
  1999. "title": "Show Last Opened Quick Pick",
  2000. "category": "GitLens"
  2001. },
  2002. {
  2003. "command": "gitlens.showCommitInView",
  2004. "title": "Show Commit in View",
  2005. "category": "GitLens"
  2006. },
  2007. {
  2008. "command": "gitlens.showFileHistoryInView",
  2009. "title": "Show File History in View",
  2010. "category": "GitLens"
  2011. },
  2012. {
  2013. "command": "gitlens.showQuickCommitDetails",
  2014. "title": "Show Commit Details",
  2015. "category": "GitLens"
  2016. },
  2017. {
  2018. "command": "gitlens.showQuickCommitFileDetails",
  2019. "title": "Show Commit Details",
  2020. "category": "GitLens"
  2021. },
  2022. {
  2023. "command": "gitlens.showQuickRevisionDetails",
  2024. "title": "Show Revision Details",
  2025. "category": "GitLens",
  2026. "icon": {
  2027. "dark": "images/dark/icon-commit.svg",
  2028. "light": "images/light/icon-commit.svg"
  2029. }
  2030. },
  2031. {
  2032. "command": "gitlens.showQuickFileHistory",
  2033. "title": "Show File History",
  2034. "category": "GitLens"
  2035. },
  2036. {
  2037. "command": "gitlens.showQuickBranchHistory",
  2038. "title": "Show Branch History",
  2039. "category": "GitLens"
  2040. },
  2041. {
  2042. "command": "gitlens.showQuickRepoHistory",
  2043. "title": "Show Current Branch History",
  2044. "category": "GitLens"
  2045. },
  2046. {
  2047. "command": "gitlens.showQuickRepoStatus",
  2048. "title": "Show Repository Status",
  2049. "category": "GitLens"
  2050. },
  2051. {
  2052. "command": "gitlens.showQuickStashList",
  2053. "title": "Show Stashed Changes",
  2054. "category": "GitLens"
  2055. },
  2056. {
  2057. "command": "gitlens.copyMessageToClipboard",
  2058. "title": "Copy Commit Message to Clipboard",
  2059. "category": "GitLens",
  2060. "icon": {
  2061. "dark": "images/dark/icon-clipboard.svg",
  2062. "light": "images/light/icon-clipboard.svg"
  2063. }
  2064. },
  2065. {
  2066. "command": "gitlens.copyRemoteFileUrlToClipboard",
  2067. "title": "Copy Remote Url to Clipboard",
  2068. "category": "GitLens",
  2069. "icon": {
  2070. "dark": "images/dark/icon-copy-remote.svg",
  2071. "light": "images/light/icon-copy-remote.svg"
  2072. }
  2073. },
  2074. {
  2075. "command": "gitlens.copyShaToClipboard",
  2076. "title": "Copy Commit ID to Clipboard",
  2077. "category": "GitLens",
  2078. "icon": {
  2079. "dark": "images/dark/icon-copy-commit.svg",
  2080. "light": "images/light/icon-copy-commit.svg"
  2081. }
  2082. },
  2083. {
  2084. "command": "gitlens.closeUnchangedFiles",
  2085. "title": "Close Unchanged Files",
  2086. "category": "GitLens"
  2087. },
  2088. {
  2089. "command": "gitlens.openChangedFiles",
  2090. "title": "Open Changed Files",
  2091. "category": "GitLens"
  2092. },
  2093. {
  2094. "command": "gitlens.openBranchesInRemote",
  2095. "title": "Open Branches on Remote",
  2096. "category": "GitLens",
  2097. "icon": {
  2098. "dark": "images/dark/icon-link.svg",
  2099. "light": "images/light/icon-link.svg"
  2100. }
  2101. },
  2102. {
  2103. "command": "gitlens.openBranchInRemote",
  2104. "title": "Open Branch on Remote",
  2105. "category": "GitLens",
  2106. "icon": {
  2107. "dark": "images/dark/icon-link.svg",
  2108. "light": "images/light/icon-link.svg"
  2109. }
  2110. },
  2111. {
  2112. "command": "gitlens.openCommitInRemote",
  2113. "title": "Open Commit on Remote",
  2114. "category": "GitLens",
  2115. "icon": {
  2116. "dark": "images/dark/icon-link.svg",
  2117. "light": "images/light/icon-link.svg"
  2118. }
  2119. },
  2120. {
  2121. "command": "gitlens.openFileInRemote",
  2122. "title": "Open File on Remote",
  2123. "category": "GitLens",
  2124. "icon": {
  2125. "dark": "images/dark/icon-link.svg",
  2126. "light": "images/light/icon-link.svg"
  2127. }
  2128. },
  2129. {
  2130. "command": "gitlens.openFileRevision",
  2131. "title": "Open Revision...",
  2132. "category": "GitLens"
  2133. },
  2134. {
  2135. "command": "gitlens.openFileRevisionFromBranch",
  2136. "title": "Open Revision from Branch or Tag...",
  2137. "category": "GitLens"
  2138. },
  2139. {
  2140. "command": "gitlens.openRepoInRemote",
  2141. "title": "Open Repository on Remote",
  2142. "category": "GitLens",
  2143. "icon": {
  2144. "dark": "images/dark/icon-link.svg",
  2145. "light": "images/light/icon-link.svg"
  2146. }
  2147. },
  2148. {
  2149. "command": "gitlens.openWorkingFile",
  2150. "title": "Open Working File",
  2151. "category": "GitLens",
  2152. "icon": {
  2153. "dark": "images/dark/icon-open-working-file.svg",
  2154. "light": "images/light/icon-open-working-file.svg"
  2155. }
  2156. },
  2157. {
  2158. "command": "gitlens.stashApply",
  2159. "title": "Apply Stashed Changes",
  2160. "category": "GitLens",
  2161. "icon": {
  2162. "dark": "images/dark/icon-stash-pop.svg",
  2163. "light": "images/light/icon-stash-pop.svg"
  2164. }
  2165. },
  2166. {
  2167. "command": "gitlens.stashDelete",
  2168. "title": "Delete Stashed Changes",
  2169. "category": "GitLens",
  2170. "icon": {
  2171. "dark": "images/dark/icon-delete.svg",
  2172. "light": "images/light/icon-delete.svg"
  2173. }
  2174. },
  2175. {
  2176. "command": "gitlens.stashSave",
  2177. "title": "Stash All Changes",
  2178. "category": "GitLens",
  2179. "icon": {
  2180. "dark": "images/dark/icon-stash-save.svg",
  2181. "light": "images/light/icon-stash-save.svg"
  2182. }
  2183. },
  2184. {
  2185. "command": "gitlens.stashSaveFiles",
  2186. "title": "Stash Changes",
  2187. "category": "GitLens",
  2188. "icon": {
  2189. "dark": "images/dark/icon-stash-save.svg",
  2190. "light": "images/light/icon-stash-save.svg"
  2191. }
  2192. },
  2193. {
  2194. "command": "gitlens.externalDiff",
  2195. "title": "Open Changes (with difftool)",
  2196. "category": "GitLens"
  2197. },
  2198. {
  2199. "command": "gitlens.externalDiffAll",
  2200. "title": "Open All Changes (with difftool)",
  2201. "category": "GitLens"
  2202. },
  2203. {
  2204. "command": "gitlens.resetSuppressedWarnings",
  2205. "title": "Reset Suppressed Warnings",
  2206. "category": "GitLens"
  2207. },
  2208. {
  2209. "command": "gitlens.views.exploreRepoRevision",
  2210. "title": "Explore Repository from Here",
  2211. "category": "GitLens"
  2212. },
  2213. {
  2214. "command": "gitlens.fetchRepositories",
  2215. "title": "Fetch Repositories",
  2216. "category": "GitLens",
  2217. "icon": {
  2218. "dark": "images/dark/icon-sync.svg",
  2219. "light": "images/light/icon-sync.svg"
  2220. }
  2221. },
  2222. {
  2223. "command": "gitlens.pullRepositories",
  2224. "title": "Pull Repositories",
  2225. "category": "GitLens",
  2226. "icon": {
  2227. "dark": "images/dark/icon-pull.svg",
  2228. "light": "images/light/icon-pull.svg"
  2229. }
  2230. },
  2231. {
  2232. "command": "gitlens.pushRepositories",
  2233. "title": "Push Repositories",
  2234. "category": "GitLens",
  2235. "icon": {
  2236. "dark": "images/dark/icon-push.svg",
  2237. "light": "images/light/icon-push.svg"
  2238. }
  2239. },
  2240. {
  2241. "command": "gitlens.views.checkout",
  2242. "title": "Checkout",
  2243. "category": "GitLens",
  2244. "icon": {
  2245. "dark": "images/dark/icon-checkout.svg",
  2246. "light": "images/light/icon-checkout.svg"
  2247. }
  2248. },
  2249. {
  2250. "command": "gitlens.views.fetch",
  2251. "title": "Fetch",
  2252. "category": "GitLens",
  2253. "icon": {
  2254. "dark": "images/dark/icon-sync.svg",
  2255. "light": "images/light/icon-sync.svg"
  2256. }
  2257. },
  2258. {
  2259. "command": "gitlens.views.pull",
  2260. "title": "Pull",
  2261. "category": "GitLens",
  2262. "icon": {
  2263. "dark": "images/dark/icon-pull.svg",
  2264. "light": "images/light/icon-pull.svg"
  2265. }
  2266. },
  2267. {
  2268. "command": "gitlens.views.push",
  2269. "title": "Push",
  2270. "category": "GitLens",
  2271. "icon": {
  2272. "dark": "images/dark/icon-push.svg",
  2273. "light": "images/light/icon-push.svg"
  2274. }
  2275. },
  2276. {
  2277. "command": "gitlens.views.pushWithForce",
  2278. "title": "Push (force)",
  2279. "category": "GitLens",
  2280. "icon": {
  2281. "dark": "images/dark/icon-push-force.svg",
  2282. "light": "images/light/icon-push-force.svg"
  2283. }
  2284. },
  2285. {
  2286. "command": "gitlens.views.openInTerminal",
  2287. "title": "Open in Terminal",
  2288. "category": "GitLens"
  2289. },
  2290. {
  2291. "command": "gitlens.views.setAsDefault",
  2292. "title": "Set as Default",
  2293. "category": "GitLens"
  2294. },
  2295. {
  2296. "command": "gitlens.views.unsetAsDefault",
  2297. "title": "Unset as Default",
  2298. "category": "GitLens"
  2299. },
  2300. {
  2301. "command": "gitlens.views.stageDirectory",
  2302. "title": "Stage All Changes",
  2303. "category": "GitLens",
  2304. "icon": {
  2305. "dark": "images/dark/icon-add.svg",
  2306. "light": "images/light/icon-add.svg"
  2307. }
  2308. },
  2309. {
  2310. "command": "gitlens.views.stageFile",
  2311. "title": "Stage Changes",
  2312. "category": "GitLens",
  2313. "icon": {
  2314. "dark": "images/dark/icon-add.svg",
  2315. "light": "images/light/icon-add.svg"
  2316. }
  2317. },
  2318. {
  2319. "command": "gitlens.views.unstageDirectory",
  2320. "title": "Unstage All Changes",
  2321. "category": "GitLens",
  2322. "icon": {
  2323. "dark": "images/dark/icon-minus.svg",
  2324. "light": "images/light/icon-minus.svg"
  2325. }
  2326. },
  2327. {
  2328. "command": "gitlens.views.unstageFile",
  2329. "title": "Unstage Changes",
  2330. "category": "GitLens",
  2331. "icon": {
  2332. "dark": "images/dark/icon-minus.svg",
  2333. "light": "images/light/icon-minus.svg"
  2334. }
  2335. },
  2336. {
  2337. "command": "gitlens.views.star",
  2338. "title": "Add to Favorites",
  2339. "category": "GitLens",
  2340. "icon": {
  2341. "dark": "images/dark/icon-star.svg",
  2342. "light": "images/light/icon-star.svg"
  2343. }
  2344. },
  2345. {
  2346. "command": "gitlens.views.unstar",
  2347. "title": "Remove from Favorites",
  2348. "category": "GitLens",
  2349. "icon": {
  2350. "dark": "images/dark/icon-star-filled.svg",
  2351. "light": "images/light/icon-star-filled.svg"
  2352. }
  2353. },
  2354. {
  2355. "command": "gitlens.views.openDirectoryDiff",
  2356. "title": "Open Directory Compare",
  2357. "category": "GitLens"
  2358. },
  2359. {
  2360. "command": "gitlens.views.openDirectoryDiffWithWorking",
  2361. "title": "Open Directory Compare with Working Tree",
  2362. "category": "GitLens"
  2363. },
  2364. {
  2365. "command": "gitlens.views.openChanges",
  2366. "title": "Open Changes",
  2367. "category": "GitLens"
  2368. },
  2369. {
  2370. "command": "gitlens.views.openChangesWithWorking",
  2371. "title": "Open Changes with Working File",
  2372. "category": "GitLens"
  2373. },
  2374. {
  2375. "command": "gitlens.views.openFile",
  2376. "title": "Open File",
  2377. "category": "GitLens",
  2378. "icon": {
  2379. "dark": "images/dark/icon-open-file.svg",
  2380. "light": "images/light/icon-open-file.svg"
  2381. }
  2382. },
  2383. {
  2384. "command": "gitlens.views.openFileRevision",
  2385. "title": "Open Revision",
  2386. "category": "GitLens"
  2387. },
  2388. {
  2389. "command": "gitlens.views.openFileRevisionInRemote",
  2390. "title": "Open Revision on Remote",
  2391. "category": "GitLens",
  2392. "icon": {
  2393. "dark": "images/dark/icon-link.svg",
  2394. "light": "images/light/icon-link.svg"
  2395. }
  2396. },
  2397. {
  2398. "command": "gitlens.views.openChangedFiles",
  2399. "title": "Open Files",
  2400. "category": "GitLens"
  2401. },
  2402. {
  2403. "command": "gitlens.views.openChangedFileChanges",
  2404. "title": "Open All Changes",
  2405. "category": "GitLens"
  2406. },
  2407. {
  2408. "command": "gitlens.views.openChangedFileChangesWithWorking",
  2409. "title": "Open All Changes with Working Tree",
  2410. "category": "GitLens"
  2411. },
  2412. {
  2413. "command": "gitlens.views.openChangedFileRevisions",
  2414. "title": "Open Revisions",
  2415. "category": "GitLens"
  2416. },
  2417. {
  2418. "command": "gitlens.views.applyChanges",
  2419. "title": "Apply Changes",
  2420. "category": "GitLens"
  2421. },
  2422. {
  2423. "command": "gitlens.views.closeRepository",
  2424. "title": "Close Repository",
  2425. "category": "GitLens"
  2426. },
  2427. {
  2428. "command": "gitlens.views.compareAncestryWithWorking",
  2429. "title": "Compare Ancestry with Working Tree",
  2430. "category": "GitLens"
  2431. },
  2432. {
  2433. "command": "gitlens.views.compareWithHead",
  2434. "title": "Compare with HEAD",
  2435. "category": "GitLens",
  2436. "icon": {
  2437. "dark": "images/dark/icon-compare-refs.svg",
  2438. "light": "images/light/icon-compare-refs.svg"
  2439. }
  2440. },
  2441. {
  2442. "command": "gitlens.views.compareWithRemote",
  2443. "title": "Compare with Remote",
  2444. "category": "GitLens",
  2445. "icon": {
  2446. "dark": "images/dark/icon-compare-ref-remote.svg",
  2447. "light": "images/light/icon-compare-ref-remote.svg"
  2448. }
  2449. },
  2450. {
  2451. "command": "gitlens.views.compareWithSelected",
  2452. "title": "Compare with Selected",
  2453. "category": "GitLens"
  2454. },
  2455. {
  2456. "command": "gitlens.views.selectForCompare",
  2457. "title": "Select for Compare",
  2458. "category": "GitLens"
  2459. },
  2460. {
  2461. "command": "gitlens.views.compareFileWithSelected",
  2462. "title": "Compare with Selected",
  2463. "category": "GitLens"
  2464. },
  2465. {
  2466. "command": "gitlens.views.selectFileForCompare",
  2467. "title": "Select for Compare",
  2468. "category": "GitLens"
  2469. },
  2470. {
  2471. "command": "gitlens.views.compareWithWorking",
  2472. "title": "Compare with Working Tree",
  2473. "category": "GitLens",
  2474. "icon": {
  2475. "dark": "images/dark/icon-compare-ref-working.svg",
  2476. "light": "images/light/icon-compare-ref-working.svg"
  2477. }
  2478. },
  2479. {
  2480. "command": "gitlens.views.contributor.addCoauthoredBy",
  2481. "title": "Add as Co-author",
  2482. "category": "GitLens"
  2483. },
  2484. {
  2485. "command": "gitlens.views.contributor.copyToClipboard",
  2486. "title": "Copy to Clipboard",
  2487. "category": "GitLens",
  2488. "icon": {
  2489. "dark": "images/dark/icon-clipboard.svg",
  2490. "light": "images/light/icon-clipboard.svg"
  2491. }
  2492. },
  2493. {
  2494. "command": "gitlens.views.terminalCheckoutBranch",
  2495. "title": "Checkout Branch (via Terminal)",
  2496. "category": "GitLens"
  2497. },
  2498. {
  2499. "command": "gitlens.views.terminalCreateBranch",
  2500. "title": "Create Branch (via Terminal)...",
  2501. "category": "GitLens"
  2502. },
  2503. {
  2504. "command": "gitlens.views.terminalDeleteBranch",
  2505. "title": "Delete Branch (via Terminal)",
  2506. "category": "GitLens"
  2507. },
  2508. {
  2509. "command": "gitlens.views.terminalMergeBranch",
  2510. "title": "Merge Branch (via Terminal)",
  2511. "category": "GitLens"
  2512. },
  2513. {
  2514. "command": "gitlens.views.terminalRebaseBranch",
  2515. "title": "Rebase (Interactive) Branch (via Terminal)",
  2516. "category": "GitLens"
  2517. },
  2518. {
  2519. "command": "gitlens.views.terminalRebaseBranchToRemote",
  2520. "title": "Rebase (Interactive) Branch to Remote (via Terminal)",
  2521. "category": "GitLens"
  2522. },
  2523. {
  2524. "command": "gitlens.views.terminalSquashBranchIntoCommit",
  2525. "title": "Squash Branch into Commit (via Terminal)",
  2526. "category": "GitLens"
  2527. },
  2528. {
  2529. "command": "gitlens.views.terminalCheckoutCommit",
  2530. "title": "Checkout Commit (via Terminal)",
  2531. "category": "GitLens"
  2532. },
  2533. {
  2534. "command": "gitlens.views.terminalCherryPickCommit",
  2535. "title": "Cherry Pick Commit (via Terminal)",
  2536. "category": "GitLens"
  2537. },
  2538. {
  2539. "command": "gitlens.views.terminalPushCommit",
  2540. "title": "Push to Commit (via Terminal)",
  2541. "category": "GitLens"
  2542. },
  2543. {
  2544. "command": "gitlens.views.terminalRebaseCommit",
  2545. "title": "Rebase to Commit (via Terminal)",
  2546. "category": "GitLens"
  2547. },
  2548. {
  2549. "command": "gitlens.views.terminalResetCommit",
  2550. "title": "Reset to Commit (via Terminal)",
  2551. "category": "GitLens"
  2552. },
  2553. {
  2554. "command": "gitlens.views.terminalRevertCommit",
  2555. "title": "Revert Commit (via Terminal)",
  2556. "category": "GitLens"
  2557. },
  2558. {
  2559. "command": "gitlens.views.terminalRemoveRemote",
  2560. "title": "Remove Remote (via Terminal)",
  2561. "category": "GitLens"
  2562. },
  2563. {
  2564. "command": "gitlens.views.terminalCreateTag",
  2565. "title": "Create Tag (via Terminal)...",
  2566. "category": "GitLens"
  2567. },
  2568. {
  2569. "command": "gitlens.views.terminalDeleteTag",
  2570. "title": "Delete Tag (via Terminal)",
  2571. "category": "GitLens"
  2572. },
  2573. {
  2574. "command": "gitlens.views.repositories.refresh",
  2575. "title": "Refresh",
  2576. "category": "GitLens",
  2577. "icon": {
  2578. "dark": "images/dark/icon-refresh.svg",
  2579. "light": "images/light/icon-refresh.svg"
  2580. }
  2581. },
  2582. {
  2583. "command": "gitlens.views.repositories.setFilesLayoutToAuto",
  2584. "title": "Automatic Layout",
  2585. "category": "GitLens"
  2586. },
  2587. {
  2588. "command": "gitlens.views.repositories.setFilesLayoutToList",
  2589. "title": "List Layout",
  2590. "category": "GitLens"
  2591. },
  2592. {
  2593. "command": "gitlens.views.repositories.setFilesLayoutToTree",
  2594. "title": "Tree Layout",
  2595. "category": "GitLens"
  2596. },
  2597. {
  2598. "command": "gitlens.views.repositories.setAutoRefreshToOn",
  2599. "title": "Enable Automatic Refresh",
  2600. "category": "GitLens"
  2601. },
  2602. {
  2603. "command": "gitlens.views.repositories.setAutoRefreshToOff",
  2604. "title": "Disable Automatic Refresh",
  2605. "category": "GitLens"
  2606. },
  2607. {
  2608. "command": "gitlens.views.fileHistory.refresh",
  2609. "title": "Refresh",
  2610. "category": "GitLens",
  2611. "icon": {
  2612. "dark": "images/dark/icon-refresh.svg",
  2613. "light": "images/light/icon-refresh.svg"
  2614. }
  2615. },
  2616. {
  2617. "command": "gitlens.views.fileHistory.changeBase",
  2618. "title": "Change Base...",
  2619. "category": "GitLens",
  2620. "icon": {
  2621. "dark": "images/dark/icon-history.svg",
  2622. "light": "images/light/icon-history.svg"
  2623. }
  2624. },
  2625. {
  2626. "command": "gitlens.views.fileHistory.setEditorFollowingOn",
  2627. "title": "Resume File Tracking",
  2628. "category": "GitLens",
  2629. "icon": {
  2630. "dark": "images/dark/icon-location.svg",
  2631. "light": "images/light/icon-location.svg"
  2632. }
  2633. },
  2634. {
  2635. "command": "gitlens.views.fileHistory.setEditorFollowingOff",
  2636. "title": "Pause File Tracking",
  2637. "category": "GitLens",
  2638. "icon": {
  2639. "dark": "images/dark/icon-location-filled.svg",
  2640. "light": "images/light/icon-location-filled.svg"
  2641. }
  2642. },
  2643. {
  2644. "command": "gitlens.views.fileHistory.setRenameFollowingOn",
  2645. "title": "Follow Renames",
  2646. "category": "GitLens"
  2647. },
  2648. {
  2649. "command": "gitlens.views.fileHistory.setRenameFollowingOff",
  2650. "title": "Don't Follow Renames",
  2651. "category": "GitLens"
  2652. },
  2653. {
  2654. "command": "gitlens.views.lineHistory.refresh",
  2655. "title": "Refresh",
  2656. "category": "GitLens",
  2657. "icon": {
  2658. "dark": "images/dark/icon-refresh.svg",
  2659. "light": "images/light/icon-refresh.svg"
  2660. }
  2661. },
  2662. {
  2663. "command": "gitlens.views.lineHistory.changeBase",
  2664. "title": "Change Base...",
  2665. "category": "GitLens",
  2666. "icon": {
  2667. "dark": "images/dark/icon-history.svg",
  2668. "light": "images/light/icon-history.svg"
  2669. }
  2670. },
  2671. {
  2672. "command": "gitlens.views.lineHistory.setEditorFollowingOn",
  2673. "title": "Resume Line Tracking",
  2674. "category": "GitLens",
  2675. "icon": {
  2676. "dark": "images/dark/icon-location.svg",
  2677. "light": "images/light/icon-location.svg"
  2678. }
  2679. },
  2680. {
  2681. "command": "gitlens.views.lineHistory.setEditorFollowingOff",
  2682. "title": "Pause Line Tracking",
  2683. "category": "GitLens",
  2684. "icon": {
  2685. "dark": "images/dark/icon-location-filled.svg",
  2686. "light": "images/light/icon-location-filled.svg"
  2687. }
  2688. },
  2689. {
  2690. "command": "gitlens.views.lineHistory.setRenameFollowingOn",
  2691. "title": "Follow Renames",
  2692. "category": "GitLens"
  2693. },
  2694. {
  2695. "command": "gitlens.views.lineHistory.setRenameFollowingOff",
  2696. "title": "Don't Follow Renames",
  2697. "category": "GitLens"
  2698. },
  2699. {
  2700. "command": "gitlens.views.compare.selectForCompare",
  2701. "title": "Compare Branch or Tag with...",
  2702. "category": "GitLens",
  2703. "icon": {
  2704. "dark": "images/dark/icon-compare-refs.svg",
  2705. "light": "images/light/icon-compare-refs.svg"
  2706. }
  2707. },
  2708. {
  2709. "command": "gitlens.views.compare.clear",
  2710. "title": "Clear Results",
  2711. "category": "GitLens",
  2712. "icon": {
  2713. "dark": "images/dark/icon-clear.svg",
  2714. "light": "images/light/icon-clear.svg"
  2715. }
  2716. },
  2717. {
  2718. "command": "gitlens.views.compare.refresh",
  2719. "title": "Refresh",
  2720. "category": "GitLens",
  2721. "icon": {
  2722. "dark": "images/dark/icon-refresh.svg",
  2723. "light": "images/light/icon-refresh.svg"
  2724. }
  2725. },
  2726. {
  2727. "command": "gitlens.views.compare.setFilesLayoutToAuto",
  2728. "title": "Automatic Layout",
  2729. "category": "GitLens"
  2730. },
  2731. {
  2732. "command": "gitlens.views.compare.setFilesLayoutToList",
  2733. "title": "List Layout",
  2734. "category": "GitLens"
  2735. },
  2736. {
  2737. "command": "gitlens.views.compare.setFilesLayoutToTree",
  2738. "title": "Tree Layout",
  2739. "category": "GitLens"
  2740. },
  2741. {
  2742. "command": "gitlens.views.compare.setKeepResultsToOn",
  2743. "title": "Keep Results",
  2744. "category": "GitLens",
  2745. "icon": {
  2746. "dark": "images/dark/icon-lock.svg",
  2747. "light": "images/light/icon-lock.svg"
  2748. }
  2749. },
  2750. {
  2751. "command": "gitlens.views.compare.setKeepResultsToOff",
  2752. "title": "Keep Results",
  2753. "category": "GitLens",
  2754. "icon": {
  2755. "dark": "images/dark/icon-locked.svg",
  2756. "light": "images/light/icon-locked.svg"
  2757. }
  2758. },
  2759. {
  2760. "command": "gitlens.views.compare.pinComparison",
  2761. "title": "Pin Comparison",
  2762. "category": "GitLens",
  2763. "icon": {
  2764. "dark": "images/dark/icon-pin-tilted.svg",
  2765. "light": "images/light/icon-pin-tilted.svg"
  2766. }
  2767. },
  2768. {
  2769. "command": "gitlens.views.compare.unpinComparison",
  2770. "title": "Unpin Comparison",
  2771. "category": "GitLens",
  2772. "icon": {
  2773. "dark": "images/dark/icon-pin-filled.svg",
  2774. "light": "images/light/icon-pin-filled.svg"
  2775. }
  2776. },
  2777. {
  2778. "command": "gitlens.views.compare.swapComparison",
  2779. "title": "Swap Comparison",
  2780. "category": "GitLens",
  2781. "icon": {
  2782. "dark": "images/dark/icon-swap.svg",
  2783. "light": "images/light/icon-swap.svg"
  2784. }
  2785. },
  2786. {
  2787. "command": "gitlens.views.search.searchCommits",
  2788. "title": "Search Commits",
  2789. "category": "GitLens",
  2790. "icon": {
  2791. "dark": "images/dark/icon-search.svg",
  2792. "light": "images/light/icon-search.svg"
  2793. }
  2794. },
  2795. {
  2796. "command": "gitlens.views.search.clear",
  2797. "title": "Clear Results",
  2798. "category": "GitLens",
  2799. "icon": {
  2800. "dark": "images/dark/icon-clear.svg",
  2801. "light": "images/light/icon-clear.svg"
  2802. }
  2803. },
  2804. {
  2805. "command": "gitlens.views.search.refresh",
  2806. "title": "Refresh",
  2807. "category": "GitLens",
  2808. "icon": {
  2809. "dark": "images/dark/icon-refresh.svg",
  2810. "light": "images/light/icon-refresh.svg"
  2811. }
  2812. },
  2813. {
  2814. "command": "gitlens.views.search.setFilesLayoutToAuto",
  2815. "title": "Automatic Layout",
  2816. "category": "GitLens"
  2817. },
  2818. {
  2819. "command": "gitlens.views.search.setFilesLayoutToList",
  2820. "title": "List Layout",
  2821. "category": "GitLens"
  2822. },
  2823. {
  2824. "command": "gitlens.views.search.setFilesLayoutToTree",
  2825. "title": "Tree Layout",
  2826. "category": "GitLens"
  2827. },
  2828. {
  2829. "command": "gitlens.views.search.setKeepResultsToOn",
  2830. "title": "Keep Results",
  2831. "category": "GitLens",
  2832. "icon": {
  2833. "dark": "images/dark/icon-lock.svg",
  2834. "light": "images/light/icon-lock.svg"
  2835. }
  2836. },
  2837. {
  2838. "command": "gitlens.views.search.setKeepResultsToOff",
  2839. "title": "Keep Results",
  2840. "category": "GitLens",
  2841. "icon": {
  2842. "dark": "images/dark/icon-locked.svg",
  2843. "light": "images/light/icon-locked.svg"
  2844. }
  2845. },
  2846. {
  2847. "command": "gitlens.views.dismissNode",
  2848. "title": "Dismiss",
  2849. "category": "GitLens",
  2850. "icon": {
  2851. "dark": "images/dark/icon-close-small.svg",
  2852. "light": "images/light/icon-close-small.svg"
  2853. }
  2854. },
  2855. {
  2856. "command": "gitlens.views.expandNode",
  2857. "title": "Expand",
  2858. "category": "GitLens"
  2859. },
  2860. {
  2861. "command": "gitlens.views.refreshNode",
  2862. "title": "Refresh",
  2863. "category": "GitLens",
  2864. "icon": {
  2865. "dark": "images/dark/icon-refresh.svg",
  2866. "light": "images/light/icon-refresh.svg"
  2867. }
  2868. }
  2869. ],
  2870. "menus": {
  2871. "commandPalette": [
  2872. {
  2873. "command": "gitlens.showCompareView",
  2874. "when": "gitlens:enabled"
  2875. },
  2876. {
  2877. "command": "gitlens.showFileHistoryView",
  2878. "when": "gitlens:enabled"
  2879. },
  2880. {
  2881. "command": "gitlens.showLineHistoryView",
  2882. "when": "gitlens:enabled"
  2883. },
  2884. {
  2885. "command": "gitlens.showRepositoriesView",
  2886. "when": "gitlens:enabled"
  2887. },
  2888. {
  2889. "command": "gitlens.showSearchView",
  2890. "when": "gitlens:enabled"
  2891. },
  2892. {
  2893. "command": "gitlens.diffDirectory",
  2894. "when": "gitlens:enabled"
  2895. },
  2896. {
  2897. "command": "gitlens.diffDirectoryWithHead",
  2898. "when": "gitlens:enabled"
  2899. },
  2900. {
  2901. "command": "gitlens.diffHeadWithBranch",
  2902. "when": "gitlens:enabled"
  2903. },
  2904. {
  2905. "command": "gitlens.diffWorkingWithBranch",
  2906. "when": "gitlens:enabled"
  2907. },
  2908. {
  2909. "command": "gitlens.diffWithBranch",
  2910. "when": "gitlens:activeFileStatus =~ /tracked/"
  2911. },
  2912. {
  2913. "command": "gitlens.diffWithNext",
  2914. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  2915. },
  2916. {
  2917. "command": "gitlens.diffWithNextInDiff",
  2918. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  2919. },
  2920. {
  2921. "command": "gitlens.diffWithPrevious",
  2922. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  2923. },
  2924. {
  2925. "command": "gitlens.diffWithPreviousInDiff",
  2926. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  2927. },
  2928. {
  2929. "command": "gitlens.diffLineWithPrevious",
  2930. "when": "gitlens:activeFileStatus =~ /blameable/"
  2931. },
  2932. {
  2933. "command": "gitlens.diffWithRevision",
  2934. "when": "gitlens:activeFileStatus =~ /tracked/"
  2935. },
  2936. {
  2937. "command": "gitlens.diffWithWorking",
  2938. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  2939. },
  2940. {
  2941. "command": "gitlens.diffWithWorkingInDiff",
  2942. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  2943. },
  2944. {
  2945. "command": "gitlens.diffLineWithWorking",
  2946. "when": "gitlens:activeFileStatus =~ /blameable/"
  2947. },
  2948. {
  2949. "command": "gitlens.externalDiff",
  2950. "when": "gitlens:activeFileStatus =~ /tracked/"
  2951. },
  2952. {
  2953. "command": "gitlens.externalDiffAll",
  2954. "when": "gitlens:enabled"
  2955. },
  2956. {
  2957. "command": "gitlens.toggleFileBlame",
  2958. "when": "gitlens:activeFileStatus =~ /blameable/"
  2959. },
  2960. {
  2961. "command": "gitlens.clearFileAnnotations",
  2962. "when": "gitlens:activeFileStatus =~ /blameable/ && gitlens:annotationStatus == computed"
  2963. },
  2964. {
  2965. "command": "gitlens.computingFileAnnotations",
  2966. "when": "false"
  2967. },
  2968. {
  2969. "command": "gitlens.toggleFileHeatmap",
  2970. "when": "gitlens:activeFileStatus =~ /blameable/"
  2971. },
  2972. {
  2973. "command": "gitlens.toggleFileRecentChanges",
  2974. "when": "gitlens:activeFileStatus =~ /blameable/"
  2975. },
  2976. {
  2977. "command": "gitlens.toggleLineBlame",
  2978. "when": "gitlens:enabled"
  2979. },
  2980. {
  2981. "command": "gitlens.toggleCodeLens",
  2982. "when": "gitlens:enabled && gitlens:canToggleCodeLens"
  2983. },
  2984. {
  2985. "command": "gitlens.switchMode",
  2986. "when": "gitlens:enabled"
  2987. },
  2988. {
  2989. "command": "gitlens.toggleReviewMode",
  2990. "when": "gitlens:enabled"
  2991. },
  2992. {
  2993. "command": "gitlens.toggleZenMode",
  2994. "when": "gitlens:enabled"
  2995. },
  2996. {
  2997. "command": "gitlens.showCommitSearch",
  2998. "when": "gitlens:enabled"
  2999. },
  3000. {
  3001. "command": "gitlens.showLastQuickPick",
  3002. "when": "gitlens:enabled"
  3003. },
  3004. {
  3005. "command": "gitlens.showCommitInView",
  3006. "when": "gitlens:activeFileStatus =~ /blameable/"
  3007. },
  3008. {
  3009. "command": "gitlens.showFileHistoryInView",
  3010. "when": "gitlens:activeFileStatus =~ /tracked/"
  3011. },
  3012. {
  3013. "command": "gitlens.showQuickCommitDetails",
  3014. "when": "gitlens:activeFileStatus =~ /blameable/"
  3015. },
  3016. {
  3017. "command": "gitlens.showQuickCommitFileDetails",
  3018. "when": "gitlens:activeFileStatus =~ /blameable/"
  3019. },
  3020. {
  3021. "command": "gitlens.showQuickRevisionDetails",
  3022. "when": "gitlens:activeFileStatus =~ /revision/"
  3023. },
  3024. {
  3025. "command": "gitlens.showQuickFileHistory",
  3026. "when": "gitlens:activeFileStatus =~ /tracked/"
  3027. },
  3028. {
  3029. "command": "gitlens.showQuickBranchHistory",
  3030. "when": "gitlens:enabled"
  3031. },
  3032. {
  3033. "command": "gitlens.showQuickRepoHistory",
  3034. "when": "gitlens:enabled"
  3035. },
  3036. {
  3037. "command": "gitlens.showQuickRepoStatus",
  3038. "when": "gitlens:enabled"
  3039. },
  3040. {
  3041. "command": "gitlens.showQuickStashList",
  3042. "when": "gitlens:enabled"
  3043. },
  3044. {
  3045. "command": "gitlens.copyMessageToClipboard",
  3046. "when": "gitlens:activeFileStatus =~ /blameable/"
  3047. },
  3048. {
  3049. "command": "gitlens.copyRemoteFileUrlToClipboard",
  3050. "when": "gitlens:activeFileStatus =~ /tracked/ && gitlens:activeFileStatus =~ /remotes/"
  3051. },
  3052. {
  3053. "command": "gitlens.copyShaToClipboard",
  3054. "when": "gitlens:activeFileStatus =~ /blameable/"
  3055. },
  3056. {
  3057. "command": "gitlens.closeUnchangedFiles",
  3058. "when": "gitlens:enabled"
  3059. },
  3060. {
  3061. "command": "gitlens.openChangedFiles",
  3062. "when": "gitlens:enabled"
  3063. },
  3064. {
  3065. "command": "gitlens.openBranchesInRemote",
  3066. "when": "gitlens:hasRemotes"
  3067. },
  3068. {
  3069. "command": "gitlens.openBranchInRemote",
  3070. "when": "gitlens:hasRemotes"
  3071. },
  3072. {
  3073. "command": "gitlens.openCommitInRemote",
  3074. "when": "gitlens:activeFileStatus =~ /blameable/ && gitlens:activeFileStatus =~ /remotes/"
  3075. },
  3076. {
  3077. "command": "gitlens.openFileInRemote",
  3078. "when": "gitlens:activeFileStatus =~ /tracked/ && gitlens:activeFileStatus =~ /remotes/"
  3079. },
  3080. {
  3081. "command": "gitlens.openFileRevision",
  3082. "when": "gitlens:activeFileStatus =~ /tracked/"
  3083. },
  3084. {
  3085. "command": "gitlens.openFileRevisionFromBranch",
  3086. "when": "gitlens:activeFileStatus =~ /tracked/"
  3087. },
  3088. {
  3089. "command": "gitlens.openRepoInRemote",
  3090. "when": "gitlens:hasRemotes"
  3091. },
  3092. {
  3093. "command": "gitlens.openWorkingFile",
  3094. "when": "gitlens:activeFileStatus =~ /revision/"
  3095. },
  3096. {
  3097. "command": "gitlens.stashApply",
  3098. "when": "gitlens:enabled && !gitlens:readonly"
  3099. },
  3100. {
  3101. "command": "gitlens.stashDelete",
  3102. "when": "false"
  3103. },
  3104. {
  3105. "command": "gitlens.stashSave",
  3106. "when": "gitlens:enabled && !gitlens:readonly"
  3107. },
  3108. {
  3109. "command": "gitlens.stashSaveFiles",
  3110. "when": "false"
  3111. },
  3112. {
  3113. "command": "gitlens.resetSuppressedWarnings",
  3114. "when": "gitlens:enabled"
  3115. },
  3116. {
  3117. "command": "gitlens.views.exploreRepoRevision",
  3118. "when": "false"
  3119. },
  3120. {
  3121. "command": "gitlens.fetchRepositories",
  3122. "when": "gitlens:hasRemotes && !gitlens:readonly"
  3123. },
  3124. {
  3125. "command": "gitlens.pullRepositories",
  3126. "when": "gitlens:hasRemotes && !gitlens:readonly"
  3127. },
  3128. {
  3129. "command": "gitlens.pushRepositories",
  3130. "when": "gitlens:hasRemotes && !gitlens:readonly"
  3131. },
  3132. {
  3133. "command": "gitlens.views.checkout",
  3134. "when": "false"
  3135. },
  3136. {
  3137. "command": "gitlens.views.fetch",
  3138. "when": "false"
  3139. },
  3140. {
  3141. "command": "gitlens.views.pull",
  3142. "when": "false"
  3143. },
  3144. {
  3145. "command": "gitlens.views.push",
  3146. "when": "false"
  3147. },
  3148. {
  3149. "command": "gitlens.views.pushWithForce",
  3150. "when": "false"
  3151. },
  3152. {
  3153. "command": "gitlens.views.openInTerminal",
  3154. "when": "false"
  3155. },
  3156. {
  3157. "command": "gitlens.views.setAsDefault",
  3158. "when": "false"
  3159. },
  3160. {
  3161. "command": "gitlens.views.unsetAsDefault",
  3162. "when": "false"
  3163. },
  3164. {
  3165. "command": "gitlens.views.stageDirectory",
  3166. "when": "false"
  3167. },
  3168. {
  3169. "command": "gitlens.views.stageFile",
  3170. "when": "false"
  3171. },
  3172. {
  3173. "command": "gitlens.views.unstageDirectory",
  3174. "when": "false"
  3175. },
  3176. {
  3177. "command": "gitlens.views.unstageFile",
  3178. "when": "false"
  3179. },
  3180. {
  3181. "command": "gitlens.views.star",
  3182. "when": "false"
  3183. },
  3184. {
  3185. "command": "gitlens.views.unstar",
  3186. "when": "false"
  3187. },
  3188. {
  3189. "command": "gitlens.views.openChanges",
  3190. "when": "false"
  3191. },
  3192. {
  3193. "command": "gitlens.views.openDirectoryDiff",
  3194. "when": "false"
  3195. },
  3196. {
  3197. "command": "gitlens.views.openDirectoryDiffWithWorking",
  3198. "when": "false"
  3199. },
  3200. {
  3201. "command": "gitlens.views.openChangesWithWorking",
  3202. "when": "false"
  3203. },
  3204. {
  3205. "command": "gitlens.views.openFile",
  3206. "when": "false"
  3207. },
  3208. {
  3209. "command": "gitlens.views.openFileRevision",
  3210. "when": "false"
  3211. },
  3212. {
  3213. "command": "gitlens.views.openFileRevisionInRemote",
  3214. "when": "false"
  3215. },
  3216. {
  3217. "command": "gitlens.views.openChangedFiles",
  3218. "when": "false"
  3219. },
  3220. {
  3221. "command": "gitlens.views.openChangedFileChanges",
  3222. "when": "false"
  3223. },
  3224. {
  3225. "command": "gitlens.views.openChangedFileChangesWithWorking",
  3226. "when": "false"
  3227. },
  3228. {
  3229. "command": "gitlens.views.openChangedFileRevisions",
  3230. "when": "false"
  3231. },
  3232. {
  3233. "command": "gitlens.views.applyChanges",
  3234. "when": "false"
  3235. },
  3236. {
  3237. "command": "gitlens.views.closeRepository",
  3238. "when": "false"
  3239. },
  3240. {
  3241. "command": "gitlens.views.compareAncestryWithWorking",
  3242. "when": "false"
  3243. },
  3244. {
  3245. "command": "gitlens.views.compareWithHead",
  3246. "when": "false"
  3247. },
  3248. {
  3249. "command": "gitlens.views.compareWithRemote",
  3250. "when": "false"
  3251. },
  3252. {
  3253. "command": "gitlens.views.compareWithSelected",
  3254. "when": "false"
  3255. },
  3256. {
  3257. "command": "gitlens.views.selectForCompare",
  3258. "when": "false"
  3259. },
  3260. {
  3261. "command": "gitlens.views.compareFileWithSelected",
  3262. "when": "false"
  3263. },
  3264. {
  3265. "command": "gitlens.views.selectFileForCompare",
  3266. "when": "false"
  3267. },
  3268. {
  3269. "command": "gitlens.views.compareWithWorking",
  3270. "when": "false"
  3271. },
  3272. {
  3273. "command": "gitlens.views.contributor.addCoauthoredBy",
  3274. "when": "false"
  3275. },
  3276. {
  3277. "command": "gitlens.views.contributor.copyToClipboard",
  3278. "when": "false"
  3279. },
  3280. {
  3281. "command": "gitlens.views.terminalCheckoutBranch",
  3282. "when": "false"
  3283. },
  3284. {
  3285. "command": "gitlens.views.terminalCreateBranch",
  3286. "when": "false"
  3287. },
  3288. {
  3289. "command": "gitlens.views.terminalDeleteBranch",
  3290. "when": "false"
  3291. },
  3292. {
  3293. "command": "gitlens.views.terminalMergeBranch",
  3294. "when": "false"
  3295. },
  3296. {
  3297. "command": "gitlens.views.terminalRebaseBranch",
  3298. "when": "false"
  3299. },
  3300. {
  3301. "command": "gitlens.views.terminalRebaseBranchToRemote",
  3302. "when": "false"
  3303. },
  3304. {
  3305. "command": "gitlens.views.terminalSquashBranchIntoCommit",
  3306. "when": "false"
  3307. },
  3308. {
  3309. "command": "gitlens.views.terminalCheckoutCommit",
  3310. "when": "false"
  3311. },
  3312. {
  3313. "command": "gitlens.views.terminalCherryPickCommit",
  3314. "when": "false"
  3315. },
  3316. {
  3317. "command": "gitlens.views.terminalPushCommit",
  3318. "when": "false"
  3319. },
  3320. {
  3321. "command": "gitlens.views.terminalRebaseCommit",
  3322. "when": "false"
  3323. },
  3324. {
  3325. "command": "gitlens.views.terminalResetCommit",
  3326. "when": "false"
  3327. },
  3328. {
  3329. "command": "gitlens.views.terminalRevertCommit",
  3330. "when": "false"
  3331. },
  3332. {
  3333. "command": "gitlens.views.terminalRemoveRemote",
  3334. "when": "false"
  3335. },
  3336. {
  3337. "command": "gitlens.views.terminalCreateTag",
  3338. "when": "false"
  3339. },
  3340. {
  3341. "command": "gitlens.views.terminalDeleteTag",
  3342. "when": "false"
  3343. },
  3344. {
  3345. "command": "gitlens.views.repositories.refresh",
  3346. "when": "false"
  3347. },
  3348. {
  3349. "command": "gitlens.views.repositories.setFilesLayoutToAuto",
  3350. "when": "false"
  3351. },
  3352. {
  3353. "command": "gitlens.views.repositories.setFilesLayoutToList",
  3354. "when": "false"
  3355. },
  3356. {
  3357. "command": "gitlens.views.repositories.setFilesLayoutToTree",
  3358. "when": "false"
  3359. },
  3360. {
  3361. "command": "gitlens.views.repositories.setAutoRefreshToOn",
  3362. "when": "false"
  3363. },
  3364. {
  3365. "command": "gitlens.views.repositories.setAutoRefreshToOff",
  3366. "when": "false"
  3367. },
  3368. {
  3369. "command": "gitlens.views.fileHistory.refresh",
  3370. "when": "false"
  3371. },
  3372. {
  3373. "command": "gitlens.views.fileHistory.changeBase",
  3374. "when": "false"
  3375. },
  3376. {
  3377. "command": "gitlens.views.fileHistory.setEditorFollowingOn",
  3378. "when": "false"
  3379. },
  3380. {
  3381. "command": "gitlens.views.fileHistory.setEditorFollowingOff",
  3382. "when": "false"
  3383. },
  3384. {
  3385. "command": "gitlens.views.fileHistory.setRenameFollowingOn",
  3386. "when": "false"
  3387. },
  3388. {
  3389. "command": "gitlens.views.fileHistory.setRenameFollowingOff",
  3390. "when": "false"
  3391. },
  3392. {
  3393. "command": "gitlens.views.lineHistory.refresh",
  3394. "when": "false"
  3395. },
  3396. {
  3397. "command": "gitlens.views.lineHistory.changeBase",
  3398. "when": "false"
  3399. },
  3400. {
  3401. "command": "gitlens.views.lineHistory.setEditorFollowingOn",
  3402. "when": "false"
  3403. },
  3404. {
  3405. "command": "gitlens.views.lineHistory.setEditorFollowingOff",
  3406. "when": "false"
  3407. },
  3408. {
  3409. "command": "gitlens.views.lineHistory.setRenameFollowingOn",
  3410. "when": "false"
  3411. },
  3412. {
  3413. "command": "gitlens.views.lineHistory.setRenameFollowingOff",
  3414. "when": "false"
  3415. },
  3416. {
  3417. "command": "gitlens.views.compare.selectForCompare",
  3418. "when": "gitlens:enabled && gitlens.views.compare.enabled"
  3419. },
  3420. {
  3421. "command": "gitlens.views.compare.clear",
  3422. "when": "false"
  3423. },
  3424. {
  3425. "command": "gitlens.views.compare.refresh",
  3426. "when": "false"
  3427. },
  3428. {
  3429. "command": "gitlens.views.compare.setFilesLayoutToAuto",
  3430. "when": "false"
  3431. },
  3432. {
  3433. "command": "gitlens.views.compare.setFilesLayoutToList",
  3434. "when": "false"
  3435. },
  3436. {
  3437. "command": "gitlens.views.compare.setFilesLayoutToTree",
  3438. "when": "false"
  3439. },
  3440. {
  3441. "command": "gitlens.views.compare.setKeepResultsToOn",
  3442. "when": "false"
  3443. },
  3444. {
  3445. "command": "gitlens.views.compare.setKeepResultsToOff",
  3446. "when": "false"
  3447. },
  3448. {
  3449. "command": "gitlens.views.compare.pinComparison",
  3450. "when": "false"
  3451. },
  3452. {
  3453. "command": "gitlens.views.compare.unpinComparison",
  3454. "when": "false"
  3455. },
  3456. {
  3457. "command": "gitlens.views.compare.swapComparison",
  3458. "when": "false"
  3459. },
  3460. {
  3461. "command": "gitlens.views.search.searchCommits",
  3462. "when": "false"
  3463. },
  3464. {
  3465. "command": "gitlens.views.search.clear",
  3466. "when": "false"
  3467. },
  3468. {
  3469. "command": "gitlens.views.search.refresh",
  3470. "when": "false"
  3471. },
  3472. {
  3473. "command": "gitlens.views.search.setFilesLayoutToAuto",
  3474. "when": "false"
  3475. },
  3476. {
  3477. "command": "gitlens.views.search.setFilesLayoutToList",
  3478. "when": "false"
  3479. },
  3480. {
  3481. "command": "gitlens.views.search.setFilesLayoutToTree",
  3482. "when": "false"
  3483. },
  3484. {
  3485. "command": "gitlens.views.search.setKeepResultsToOn",
  3486. "when": "false"
  3487. },
  3488. {
  3489. "command": "gitlens.views.search.setKeepResultsToOff",
  3490. "when": "false"
  3491. },
  3492. {
  3493. "command": "gitlens.views.dismissNode",
  3494. "when": "false"
  3495. },
  3496. {
  3497. "command": "gitlens.views.expandNode",
  3498. "when": "false"
  3499. },
  3500. {
  3501. "command": "gitlens.views.refreshNode",
  3502. "when": "false"
  3503. }
  3504. ],
  3505. "editor/context": [
  3506. {
  3507. "command": "gitlens.diffLineWithPrevious",
  3508. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.compare",
  3509. "group": "1_gitlens@1"
  3510. },
  3511. {
  3512. "command": "gitlens.diffLineWithWorking",
  3513. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.compare",
  3514. "group": "1_gitlens@2"
  3515. },
  3516. {
  3517. "command": "gitlens.openFileInRemote",
  3518. "when": "editorTextFocus && gitlens:activeFileStatus =~ /remotes/ && config.gitlens.menus.editor.remote",
  3519. "group": "1_gitlens_1@1"
  3520. },
  3521. {
  3522. "command": "gitlens.openCommitInRemote",
  3523. "when": "editorTextFocus && gitlens:activeFileStatus =~ /remotes/ && config.gitlens.menus.editor.remote",
  3524. "group": "1_gitlens_1@2"
  3525. },
  3526. {
  3527. "command": "gitlens.showQuickCommitFileDetails",
  3528. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.details",
  3529. "group": "1_gitlens_1@3"
  3530. },
  3531. {
  3532. "command": "gitlens.showQuickFileHistory",
  3533. "when": "gitlens:activeFileStatus =~ /tracked/ && config.gitlens.menus.editor.history",
  3534. "group": "3_gitlens@1"
  3535. },
  3536. {
  3537. "command": "gitlens.showFileHistoryInView",
  3538. "when": "gitlens:activeFileStatus =~ /tracked/ && config.gitlens.menus.editor.history",
  3539. "group": "3_gitlens@2"
  3540. },
  3541. {
  3542. "command": "gitlens.toggleFileBlame",
  3543. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.blame",
  3544. "group": "3_gitlens@3"
  3545. },
  3546. {
  3547. "command": "gitlens.copyShaToClipboard",
  3548. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.clipboard",
  3549. "group": "9_b_gitlens@1"
  3550. },
  3551. {
  3552. "command": "gitlens.copyMessageToClipboard",
  3553. "when": "editorTextFocus && gitlens:activeFileStatus =~ /blameable/ && config.gitlens.menus.editor.clipboard",
  3554. "group": "9_b_gitlens@2"
  3555. },
  3556. {
  3557. "command": "gitlens.copyRemoteFileUrlToClipboard",
  3558. "when": "editorTextFocus && gitlens:activeFileStatus =~ /remotes/ && config.gitlens.menus.editor.clipboard",
  3559. "group": "9_b_gitlens@3"
  3560. }
  3561. ],
  3562. "editor/title": [
  3563. {
  3564. "command": "gitlens.diffWithWorking",
  3565. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /revision/ && resourceScheme != file && resourceScheme != git",
  3566. "group": "navigation@0"
  3567. },
  3568. {
  3569. "command": "gitlens.diffWithWorkingInDiff",
  3570. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /revision/ && resourceScheme != file && resourceScheme != git",
  3571. "group": "navigation@0"
  3572. },
  3573. {
  3574. "command": "gitlens.openWorkingFile",
  3575. "when": "gitlens:activeFileStatus =~ /revision/ && resourceScheme != file && resourceScheme != git",
  3576. "group": "navigation@0"
  3577. },
  3578. {
  3579. "command": "gitlens.openWorkingFile",
  3580. "when": "!gitlens:activeFileStatus =~ /revision/ && resourceScheme != file && resourceScheme != git && isInDiffEditor",
  3581. "group": "navigation@0"
  3582. },
  3583. {
  3584. "command": "gitlens.openWorkingFile",
  3585. "when": "gitlens:activeFileStatus =~ /revision/ && resourceScheme == git && !isInDiffEditor",
  3586. "group": "navigation@0"
  3587. },
  3588. {
  3589. "command": "gitlens.diffWithPrevious",
  3590. "alt": "gitlens.diffWithRevision",
  3591. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /tracked/ && config.gitlens.menus.editorGroup.compare",
  3592. "group": "navigation@97"
  3593. },
  3594. {
  3595. "command": "gitlens.diffWithPreviousInDiff",
  3596. "alt": "gitlens.diffWithRevision",
  3597. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /tracked/ && config.gitlens.menus.editorGroup.compare",
  3598. "group": "navigation@97"
  3599. },
  3600. {
  3601. "command": "gitlens.showQuickRevisionDetails",
  3602. "when": "gitlens:activeFileStatus =~ /revision/ && resourceScheme != git && config.gitlens.menus.editorGroup.compare",
  3603. "group": "navigation@98"
  3604. },
  3605. {
  3606. "command": "gitlens.diffWithNext",
  3607. "when": "!isInDiffEditor && gitlens:activeFileStatus =~ /revision/ && config.gitlens.menus.editorGroup.compare",
  3608. "group": "navigation@99"
  3609. },
  3610. {
  3611. "command": "gitlens.diffWithNextInDiff",
  3612. "when": "isInDiffEditor && gitlens:activeFileStatus =~ /revision/ && config.gitlens.menus.editorGroup.compare",
  3613. "group": "navigation@99"
  3614. },
  3615. {
  3616. "command": "gitlens.toggleFileBlame",
  3617. "alt": "gitlens.toggleFileHeatmap",
  3618. "when": "gitlens:activeFileStatus =~ /blameable/ && !gitlens:annotationStatus && config.gitlens.menus.editorGroup.blame",
  3619. "group": "navigation@100"
  3620. },
  3621. {
  3622. "command": "gitlens.computingFileAnnotations",
  3623. "when": "gitlens:activeFileStatus =~ /blameable/ && gitlens:annotationStatus == computing && config.gitlens.menus.editorGroup.blame",
  3624. "group": "navigation@100"
  3625. },
  3626. {
  3627. "command": "gitlens.clearFileAnnotations",
  3628. "when": "gitlens:activeFileStatus =~ /blameable/ && gitlens:annotationStatus == computed && config.gitlens.menus.editorGroup.blame",
  3629. "group": "navigation@100"
  3630. }
  3631. ],
  3632. "editor/title/context": [
  3633. {
  3634. "command": "gitlens.openWorkingFile",
  3635. "when": "resourceScheme == gitlens",
  3636. "group": "1_co_gitlens@1"
  3637. },
  3638. {
  3639. "command": "gitlens.openFileInRemote",
  3640. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.editorTab.remote",
  3641. "group": "1_co_gitlens@2"
  3642. },
  3643. {
  3644. "command": "gitlens.diffWithPrevious",
  3645. "when": "gitlens:enabled && config.gitlens.menus.editorTab.compare",
  3646. "group": "1_co_gitlens_1@1"
  3647. },
  3648. {
  3649. "command": "gitlens.diffWithRevision",
  3650. "when": "gitlens:enabled && config.gitlens.menus.editorTab.compare",
  3651. "group": "1_co_gitlens_1@2"
  3652. },
  3653. {
  3654. "command": "gitlens.diffWithWorking",
  3655. "when": "resourceScheme == gitlens && config.gitlens.menus.editorTab.compare",
  3656. "group": "1_co_gitlens_1@3"
  3657. },
  3658. {
  3659. "command": "gitlens.showQuickFileHistory",
  3660. "when": "gitlens:enabled && config.gitlens.menus.editorTab.history",
  3661. "group": "1_co_gitlens_2@1"
  3662. },
  3663. {
  3664. "command": "gitlens.showFileHistoryInView",
  3665. "when": "gitlens:enabled && config.gitlens.menus.editorTab.history",
  3666. "group": "1_co_gitlens_2@2"
  3667. },
  3668. {
  3669. "command": "gitlens.copyRemoteFileUrlToClipboard",
  3670. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.editorTab.clipboard",
  3671. "group": "1_cutcopypaste@100"
  3672. }
  3673. ],
  3674. "explorer/context": [
  3675. {
  3676. "command": "gitlens.openFileInRemote",
  3677. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.explorer.remote",
  3678. "group": "navigation@100"
  3679. },
  3680. {
  3681. "command": "gitlens.diffWithPrevious",
  3682. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && config.gitlens.menus.explorer.compare",
  3683. "group": "3_compare@1"
  3684. },
  3685. {
  3686. "command": "gitlens.diffWithRevision",
  3687. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && config.gitlens.menus.explorer.compare",
  3688. "group": "3_compare@2"
  3689. },
  3690. {
  3691. "command": "gitlens.showQuickFileHistory",
  3692. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && config.gitlens.menus.explorer.history",
  3693. "group": "4_gitlens_1@1"
  3694. },
  3695. {
  3696. "command": "gitlens.showFileHistoryInView",
  3697. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && config.gitlens.menus.explorer.history",
  3698. "group": "4_gitlens_1@2"
  3699. },
  3700. {
  3701. "command": "gitlens.copyRemoteFileUrlToClipboard",
  3702. "when": "!explorerResourceIsRoot && !explorerResourceIsFolder && gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.explorer.clipboard",
  3703. "group": "5_cutcopypaste@100"
  3704. }
  3705. ],
  3706. "scm/resourceGroup/context": [
  3707. {
  3708. "command": "gitlens.stashSave",
  3709. "when": "gitlens:enabled && !gitlens:readonly && config.gitlens.menus.scmGroup.stashInline",
  3710. "group": "inline@-1"
  3711. },
  3712. {
  3713. "command": "gitlens.stashSave",
  3714. "when": "gitlens:enabled && !gitlens:readonly && config.gitlens.menus.scmGroup.stash",
  3715. "group": "1_modification@100"
  3716. },
  3717. {
  3718. "command": "gitlens.openChangedFiles",
  3719. "when": "gitlens:enabled && config.gitlens.menus.scmGroup.openClose",
  3720. "group": "2_gitlens@1"
  3721. },
  3722. {
  3723. "command": "gitlens.closeUnchangedFiles",
  3724. "when": "gitlens:enabled && config.gitlens.menus.scmGroup.openClose",
  3725. "group": "2_gitlens@2"
  3726. },
  3727. {
  3728. "command": "gitlens.externalDiffAll",
  3729. "when": "gitlens:enabled && config.gitlens.menus.scmGroup.compare",
  3730. "group": "3_gitlens@3"
  3731. },
  3732. {
  3733. "command": "gitlens.diffDirectoryWithHead",
  3734. "when": "gitlens:enabled && config.gitlens.menus.scmGroup.compare",
  3735. "group": "3_gitlens@4"
  3736. }
  3737. ],
  3738. "scm/resourceState/context": [
  3739. {
  3740. "command": "gitlens.openFileInRemote",
  3741. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.scmItem.remote",
  3742. "group": "navigation"
  3743. },
  3744. {
  3745. "command": "gitlens.externalDiff",
  3746. "when": "gitlens:enabled && config.gitlens.menus.scmItem.compare",
  3747. "group": "navigation"
  3748. },
  3749. {
  3750. "command": "gitlens.diffWithRevision",
  3751. "when": "gitlens:enabled && config.gitlens.menus.scmItem.compare",
  3752. "group": "1_gitlens@1"
  3753. },
  3754. {
  3755. "command": "gitlens.diffWithBranch",
  3756. "when": "gitlens:enabled && config.gitlens.menus.scmItem.compare",
  3757. "group": "1_gitlens@2"
  3758. },
  3759. {
  3760. "command": "gitlens.showQuickFileHistory",
  3761. "when": "gitlens:enabled && config.gitlens.menus.scmItem.history",
  3762. "group": "1_gitlens_1@1"
  3763. },
  3764. {
  3765. "command": "gitlens.showFileHistoryInView",
  3766. "when": "gitlens:enabled && config.gitlens.menus.scmItem.history",
  3767. "group": "1_gitlens_1@2"
  3768. },
  3769. {
  3770. "command": "gitlens.stashSaveFiles",
  3771. "when": "gitlens:enabled && !gitlens:readonly && config.gitlens.menus.scmItem.stash",
  3772. "group": "1_modification@-1"
  3773. },
  3774. {
  3775. "command": "gitlens.copyRemoteFileUrlToClipboard",
  3776. "when": "gitlens:enabled && gitlens:hasRemotes && config.gitlens.menus.scmItem.clipboard",
  3777. "group": "9_gitlens@1"
  3778. }
  3779. ],
  3780. "view/title": [
  3781. {
  3782. "command": "gitlens.pushRepositories",
  3783. "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.repositories:/",
  3784. "group": "navigation@10"
  3785. },
  3786. {
  3787. "command": "gitlens.pullRepositories",
  3788. "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.repositories:/",
  3789. "group": "navigation@11"
  3790. },
  3791. {
  3792. "command": "gitlens.fetchRepositories",
  3793. "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.repositories:/",
  3794. "group": "navigation@12"
  3795. },
  3796. {
  3797. "command": "gitlens.views.repositories.refresh",
  3798. "when": "view =~ /^gitlens\\.views\\.repositories:/",
  3799. "group": "navigation@99"
  3800. },
  3801. {
  3802. "command": "gitlens.views.repositories.setFilesLayoutToAuto",
  3803. "when": "view =~ /^gitlens\\.views\\.repositories:/",
  3804. "group": "1_gitlens"
  3805. },
  3806. {
  3807. "command": "gitlens.views.repositories.setFilesLayoutToList",
  3808. "when": "view =~ /^gitlens\\.views\\.repositories:/",
  3809. "group": "1_gitlens"
  3810. },
  3811. {
  3812. "command": "gitlens.views.repositories.setFilesLayoutToTree",
  3813. "when": "view =~ /^gitlens\\.views\\.repositories:/",
  3814. "group": "1_gitlens"
  3815. },
  3816. {
  3817. "command": "gitlens.views.repositories.setAutoRefreshToOn",
  3818. "when": "view =~ /^gitlens\\.views\\.repositories:/ && config.gitlens.views.repositories.autoRefresh && !gitlens:views:repositories:autoRefresh",
  3819. "group": "2_gitlens"
  3820. },
  3821. {
  3822. "command": "gitlens.views.repositories.setAutoRefreshToOff",
  3823. "when": "view =~ /^gitlens\\.views\\.repositories:/ && config.gitlens.views.repositories.autoRefresh && gitlens:views:repositories:autoRefresh",
  3824. "group": "2_gitlens"
  3825. },
  3826. {
  3827. "command": "gitlens.views.fileHistory.setEditorFollowingOn",
  3828. "when": "view =~ /^gitlens\\.views\\.fileHistory:/ && !gitlens:views:fileHistory:editorFollowing",
  3829. "group": "navigation@10"
  3830. },
  3831. {
  3832. "command": "gitlens.views.fileHistory.setEditorFollowingOff",
  3833. "when": "view =~ /^gitlens\\.views\\.fileHistory:/ && gitlens:views:fileHistory:editorFollowing",
  3834. "group": "navigation@10"
  3835. },
  3836. {
  3837. "command": "gitlens.views.fileHistory.changeBase",
  3838. "when": "view =~ /^gitlens\\.views\\.fileHistory:/",
  3839. "group": "navigation@11"
  3840. },
  3841. {
  3842. "command": "gitlens.views.fileHistory.refresh",
  3843. "when": "view =~ /^gitlens\\.views\\.fileHistory:/",
  3844. "group": "navigation@99"
  3845. },
  3846. {
  3847. "command": "gitlens.views.fileHistory.setRenameFollowingOn",
  3848. "when": "view =~ /^gitlens\\.views\\.fileHistory:/ && !config.gitlens.advanced.fileHistoryFollowsRenames",
  3849. "group": "1_gitlens"
  3850. },
  3851. {
  3852. "command": "gitlens.views.fileHistory.setRenameFollowingOff",
  3853. "when": "view =~ /^gitlens\\.views\\.fileHistory:/ && config.gitlens.advanced.fileHistoryFollowsRenames",
  3854. "group": "1_gitlens"
  3855. },
  3856. {
  3857. "command": "gitlens.views.lineHistory.setEditorFollowingOn",
  3858. "when": "view =~ /^gitlens\\.views\\.lineHistory:/ && !gitlens:views:lineHistory:editorFollowing",
  3859. "group": "navigation@10"
  3860. },
  3861. {
  3862. "command": "gitlens.views.lineHistory.setEditorFollowingOff",
  3863. "when": "view =~ /^gitlens\\.views\\.lineHistory:/ && gitlens:views:lineHistory:editorFollowing",
  3864. "group": "navigation@10"
  3865. },
  3866. {
  3867. "command": "gitlens.views.lineHistory.changeBase",
  3868. "when": "view =~ /^gitlens\\.views\\.lineHistory:/",
  3869. "group": "navigation@11"
  3870. },
  3871. {
  3872. "command": "gitlens.views.lineHistory.refresh",
  3873. "when": "view =~ /^gitlens\\.views\\.lineHistory:/",
  3874. "group": "navigation@99"
  3875. },
  3876. {
  3877. "command": "gitlens.views.lineHistory.setRenameFollowingOn",
  3878. "when": "view =~ /^gitlens\\.views\\.lineHistory:/ && !config.gitlens.advanced.fileHistoryFollowsRenames",
  3879. "group": "1_gitlens"
  3880. },
  3881. {
  3882. "command": "gitlens.views.lineHistory.setRenameFollowingOff",
  3883. "when": "view =~ /^gitlens\\.views\\.lineHistory:/ && config.gitlens.advanced.fileHistoryFollowsRenames",
  3884. "group": "1_gitlens"
  3885. },
  3886. {
  3887. "command": "gitlens.views.compare.selectForCompare",
  3888. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3889. "group": "navigation@10"
  3890. },
  3891. {
  3892. "command": "gitlens.views.compare.setKeepResultsToOn",
  3893. "when": "view =~ /^gitlens\\.views\\.compare:/ && !gitlens:views:compare:keepResults",
  3894. "group": "navigation@11"
  3895. },
  3896. {
  3897. "command": "gitlens.views.compare.setKeepResultsToOff",
  3898. "when": "view =~ /^gitlens\\.views\\.compare:/ && gitlens:views:compare:keepResults",
  3899. "group": "navigation@11"
  3900. },
  3901. {
  3902. "command": "gitlens.views.compare.clear",
  3903. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3904. "group": "navigation@98"
  3905. },
  3906. {
  3907. "command": "gitlens.views.compare.refresh",
  3908. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3909. "group": "navigation@99"
  3910. },
  3911. {
  3912. "command": "gitlens.views.compare.setFilesLayoutToAuto",
  3913. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3914. "group": "1_gitlens"
  3915. },
  3916. {
  3917. "command": "gitlens.views.compare.setFilesLayoutToList",
  3918. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3919. "group": "1_gitlens"
  3920. },
  3921. {
  3922. "command": "gitlens.views.compare.setFilesLayoutToTree",
  3923. "when": "view =~ /^gitlens\\.views\\.compare:/",
  3924. "group": "1_gitlens"
  3925. },
  3926. {
  3927. "command": "gitlens.views.search.searchCommits",
  3928. "when": "view =~ /^gitlens\\.views\\.search:/",
  3929. "group": "navigation@10"
  3930. },
  3931. {
  3932. "command": "gitlens.views.search.setKeepResultsToOn",
  3933. "when": "view =~ /^gitlens\\.views\\.search:/ && !gitlens:views:search:keepResults",
  3934. "group": "navigation@11"
  3935. },
  3936. {
  3937. "command": "gitlens.views.search.setKeepResultsToOff",
  3938. "when": "view =~ /^gitlens\\.views\\.search:/ && gitlens:views:search:keepResults",
  3939. "group": "navigation@11"
  3940. },
  3941. {
  3942. "command": "gitlens.views.search.clear",
  3943. "when": "view =~ /^gitlens\\.views\\.search:/",
  3944. "group": "navigation@98"
  3945. },
  3946. {
  3947. "command": "gitlens.views.search.refresh",
  3948. "when": "view =~ /^gitlens\\.views\\.search:/",
  3949. "group": "navigation@99"
  3950. },
  3951. {
  3952. "command": "gitlens.views.search.setFilesLayoutToAuto",
  3953. "when": "view =~ /^gitlens\\.views\\.search:/",
  3954. "group": "1_gitlens"
  3955. },
  3956. {
  3957. "command": "gitlens.views.search.setFilesLayoutToList",
  3958. "when": "view =~ /^gitlens\\.views\\.search:/",
  3959. "group": "1_gitlens"
  3960. },
  3961. {
  3962. "command": "gitlens.views.search.setFilesLayoutToTree",
  3963. "when": "view =~ /^gitlens\\.views\\.search:/",
  3964. "group": "1_gitlens"
  3965. },
  3966. {
  3967. "command": "gitlens.supportGitLens",
  3968. "when": "view =~ /^gitlens\\.views\\..*:/ && config.gitlens.advanced.messages.suppressSupportGitLensNotification != true && gitlens:views:supportGitLens:hide != true",
  3969. "group": "navigation@1"
  3970. },
  3971. {
  3972. "command": "gitlens.showSettingsPage",
  3973. "when": "view =~ /^gitlens\\.views\\..*:/",
  3974. "group": "9_gitlens"
  3975. }
  3976. ],
  3977. "view/item/context": [
  3978. {
  3979. "command": "gitlens.openBranchesInRemote",
  3980. "when": "viewItem =~ /gitlens:branches\\b.*?\\+remotes\\b.*?/",
  3981. "group": "inline@98"
  3982. },
  3983. {
  3984. "command": "gitlens.openBranchesInRemote",
  3985. "when": "viewItem =~ /gitlens:branches\\b.*?\\+remotes\\b.*?/",
  3986. "group": "1_gitlens@1"
  3987. },
  3988. {
  3989. "command": "gitlens.views.star",
  3990. "when": "viewItem =~ /gitlens:branch\\b(?!.*?\\+starred\\b.*?)/",
  3991. "group": "inline@1"
  3992. },
  3993. {
  3994. "command": "gitlens.views.unstar",
  3995. "when": "viewItem =~ /gitlens:branch\\b.*?\\+starred\\b.*?/",
  3996. "group": "inline@2"
  3997. },
  3998. {
  3999. "command": "gitlens.views.checkout",
  4000. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4001. "group": "inline@10"
  4002. },
  4003. {
  4004. "command": "gitlens.views.compareWithRemote",
  4005. "when": "viewItem =~ /gitlens:branch\\b.*?\\+tracking\\b.*?/",
  4006. "group": "inline@96"
  4007. },
  4008. {
  4009. "command": "gitlens.views.compareWithHead",
  4010. "when": "viewItem =~ /gitlens:(branch\\b(?!.*?\\+current\\b.*?)|commit\\b|stash\\b|tag\\b)/",
  4011. "group": "inline@97",
  4012. "alt": "gitlens.views.compareWithWorking"
  4013. },
  4014. {
  4015. "command": "gitlens.views.compareWithWorking",
  4016. "when": "viewItem =~ /gitlens:branch\\b.*?\\+current\\b.*?/",
  4017. "group": "inline@97"
  4018. },
  4019. {
  4020. "command": "gitlens.openBranchInRemote",
  4021. "when": "viewItem =~ /gitlens:branch\\b.*?\\+(tracking|remote)\\b.*?/",
  4022. "group": "inline@98"
  4023. },
  4024. {
  4025. "command": "gitlens.views.checkout",
  4026. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4027. "group": "1_gitlens@1"
  4028. },
  4029. {
  4030. "command": "gitlens.openBranchInRemote",
  4031. "when": "viewItem =~ /gitlens:branch\\b.*?\\+(tracking|remote)\\b.*?/",
  4032. "group": "2_gitlens@1"
  4033. },
  4034. {
  4035. "command": "gitlens.views.compareWithRemote",
  4036. "when": "viewItem =~ /gitlens:branch\\b.*?\\+tracking\\b.*?/",
  4037. "group": "7_gitlens@1"
  4038. },
  4039. {
  4040. "command": "gitlens.views.compareWithHead",
  4041. "when": "viewItem =~ /gitlens:(branch\\b(?!.*?\\+current\\b.*?)|commit\\b|stash\\b|tag\\b)/",
  4042. "group": "7_gitlens@2"
  4043. },
  4044. {
  4045. "command": "gitlens.views.compareWithWorking",
  4046. "when": "viewItem =~ /gitlens:(branch|commit|stash|tag)\\b/",
  4047. "group": "7_gitlens@3"
  4048. },
  4049. {
  4050. "command": "gitlens.views.compareAncestryWithWorking",
  4051. "when": "viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4052. "group": "7_gitlens@4"
  4053. },
  4054. {
  4055. "command": "gitlens.views.compareWithSelected",
  4056. "when": "viewItem =~ /gitlens:(branch|commit|stash|tag)\\b/ && gitlens:views:canCompare",
  4057. "group": "7_gitlens_@1"
  4058. },
  4059. {
  4060. "command": "gitlens.views.selectForCompare",
  4061. "when": "viewItem =~ /gitlens:(branch|commit|stash|tag)\\b/",
  4062. "group": "7_gitlens_@2"
  4063. },
  4064. {
  4065. "command": "gitlens.views.compareFileWithSelected",
  4066. "when": "viewItem =~ /gitlens:file:\\b/ && gitlens:views:canCompare:file",
  4067. "group": "7_gitlens_@1"
  4068. },
  4069. {
  4070. "command": "gitlens.views.selectFileForCompare",
  4071. "when": "viewItem =~ /gitlens:file:\\b/",
  4072. "group": "7_gitlens_@2"
  4073. },
  4074. {
  4075. "command": "gitlens.views.openDirectoryDiffWithWorking",
  4076. "when": "viewItem =~ /gitlens:(branch|tag)\\b/",
  4077. "group": "7_gitlens_more@2"
  4078. },
  4079. {
  4080. "command": "gitlens.views.terminalCheckoutBranch",
  4081. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)//",
  4082. "group": "8_gitlens@1"
  4083. },
  4084. {
  4085. "command": "gitlens.views.terminalRebaseBranchToRemote",
  4086. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b.*?\\+current\\b.*?\\+tracking\\b.*?/",
  4087. "group": "8_gitlens@1"
  4088. },
  4089. {
  4090. "command": "gitlens.views.terminalMergeBranch",
  4091. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4092. "group": "8_gitlens@2"
  4093. },
  4094. {
  4095. "command": "gitlens.views.terminalRebaseBranch",
  4096. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4097. "group": "8_gitlens@3"
  4098. },
  4099. {
  4100. "command": "gitlens.views.terminalSquashBranchIntoCommit",
  4101. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4102. "group": "8_gitlens@4"
  4103. },
  4104. {
  4105. "command": "gitlens.views.terminalCreateBranch",
  4106. "when": "!gitlens:readonly && viewItem =~ /gitlens:(branch|commit|tag)\\b/",
  4107. "group": "8_gitlens@5"
  4108. },
  4109. {
  4110. "command": "gitlens.views.terminalDeleteBranch",
  4111. "when": "!gitlens:readonly && viewItem =~ /gitlens:branch\\b(?!.*?\\+current\\b.*?)/",
  4112. "group": "8_gitlens@6"
  4113. },
  4114. {
  4115. "command": "gitlens.views.terminalCreateTag",
  4116. "when": "!gitlens:readonly && viewItem =~ /gitlens:(branch|commit)\\b/",
  4117. "group": "8_gitlens@7"
  4118. },
  4119. {
  4120. "command": "gitlens.views.star",
  4121. "when": "viewItem =~ /gitlens:branch\\b(?!.*?\\+starred\\b.*?)/",
  4122. "group": "8_gitlens_@1"
  4123. },
  4124. {
  4125. "command": "gitlens.views.unstar",
  4126. "when": "viewItem =~ /gitlens:branch\\b.*?\\+starred\\b.*?/",
  4127. "group": "8_gitlens_@1"
  4128. },
  4129. {
  4130. "command": "gitlens.views.contributor.copyToClipboard",
  4131. "when": "viewItem =~ /gitlens:contributor\\b/",
  4132. "group": "inline@98"
  4133. },
  4134. {
  4135. "command": "gitlens.views.contributor.copyToClipboard",
  4136. "when": "viewItem =~ /gitlens:contributor\\b/",
  4137. "group": "1_gitlens@1"
  4138. },
  4139. {
  4140. "command": "gitlens.views.contributor.addCoauthoredBy",
  4141. "when": "viewItem =~ /gitlens:contributor\\b/",
  4142. "group": "2_gitlens@1"
  4143. },
  4144. {
  4145. "command": "gitlens.openCommitInRemote",
  4146. "when": "viewItem =~ /gitlens:commit\\b/ && gitlens:hasRemotes",
  4147. "group": "inline@98"
  4148. },
  4149. {
  4150. "command": "gitlens.openCommitInRemote",
  4151. "when": "viewItem =~ /gitlens:commit\\b/ && gitlens:hasRemotes",
  4152. "group": "1_gitlens@1"
  4153. },
  4154. {
  4155. "command": "gitlens.views.openChangedFileChanges",
  4156. "when": "viewItem =~ /gitlens:(commit|stash)\\b/",
  4157. "group": "2_gitlens@1"
  4158. },
  4159. {
  4160. "command": "gitlens.views.openChangedFileChangesWithWorking",
  4161. "when": "viewItem =~ /gitlens:(commit|stash)\\b/",
  4162. "group": "2_gitlens@2"
  4163. },
  4164. {
  4165. "command": "gitlens.views.openChangedFiles",
  4166. "when": "viewItem =~ /gitlens:(commit|stash)\\b/",
  4167. "group": "3_gitlens@1"
  4168. },
  4169. {
  4170. "command": "gitlens.views.openChangedFileRevisions",
  4171. "when": "viewItem =~ /gitlens:(commit|stash)\\b/",
  4172. "group": "3_gitlens@2"
  4173. },
  4174. {
  4175. "command": "gitlens.copyShaToClipboard",
  4176. "when": "viewItem =~ /gitlens:(file:)?commit\\b/",
  4177. "group": "inline@98",
  4178. "alt": "gitlens.copyMessageToClipboard"
  4179. },
  4180. {
  4181. "command": "gitlens.copyShaToClipboard",
  4182. "when": "viewItem =~ /gitlens:(file:)?commit\\b/",
  4183. "group": "5_gitlens@1"
  4184. },
  4185. {
  4186. "command": "gitlens.copyMessageToClipboard",
  4187. "when": "viewItem =~ /gitlens:(commit|stash|file:commit)\\b/",
  4188. "group": "5_gitlens@2"
  4189. },
  4190. {
  4191. "command": "gitlens.showQuickCommitDetails",
  4192. "when": "viewItem =~ /gitlens:commit\\b/",
  4193. "group": "5_gitlens_1@1"
  4194. },
  4195. {
  4196. "command": "gitlens.showCommitInView",
  4197. "when": "viewItem =~ /gitlens:commit\\b/",
  4198. "group": "5_gitlens_1@2"
  4199. },
  4200. {
  4201. "command": "gitlens.views.terminalCherryPickCommit",
  4202. "when": "!gitlens:readonly && viewItem == gitlens:commit",
  4203. "group": "8_gitlens@1"
  4204. },
  4205. {
  4206. "command": "gitlens.views.terminalPushCommit",
  4207. "when": "!gitlens:readonly && viewItem =~ /gitlens:commit\\b.*?\\+current\\b.*?/",
  4208. "group": "8_gitlens@2"
  4209. },
  4210. {
  4211. "command": "gitlens.views.terminalRevertCommit",
  4212. "when": "!gitlens:readonly && viewItem =~ /gitlens:commit\\b.*?\\+current\\b.*?/",
  4213. "group": "8_gitlens@3"
  4214. },
  4215. {
  4216. "command": "gitlens.views.terminalCheckoutCommit",
  4217. "when": "!gitlens:readonly && viewItem =~ /gitlens:commit\\b/",
  4218. "group": "8_gitlens@4"
  4219. },
  4220. {
  4221. "command": "gitlens.views.terminalRebaseCommit",
  4222. "when": "!gitlens:readonly && viewItem =~ /gitlens:commit\\b/",
  4223. "group": "8_gitlens@5"
  4224. },
  4225. {
  4226. "command": "gitlens.views.terminalResetCommit",
  4227. "when": "!gitlens:readonly && viewItem =~ /gitlens:commit\\b/",
  4228. "group": "8_gitlens@6"
  4229. },
  4230. {
  4231. "command": "gitlens.views.openFile",
  4232. "when": "viewItem =~ /gitlens:(file|history:(file|line)|status:file)\\b/",
  4233. "group": "inline@1"
  4234. },
  4235. {
  4236. "command": "gitlens.views.stageFile",
  4237. "when": "!gitlens:readonly && viewItem =~ /gitlens:file\\b.*?\\+unstaged\\b.*?/",
  4238. "group": "inline@1"
  4239. },
  4240. {
  4241. "command": "gitlens.views.unstageFile",
  4242. "when": "!gitlens:readonly && viewItem =~ /gitlens:file\\b.*?\\+staged\\b.*?/",
  4243. "group": "inline@1"
  4244. },
  4245. {
  4246. "command": "gitlens.views.stageFile",
  4247. "when": "!gitlens:readonly && viewItem =~ /gitlens:file\\b.*?\\+unstaged\\b.*?/",
  4248. "group": "1_gitlens@1"
  4249. },
  4250. {
  4251. "command": "gitlens.views.unstageFile",
  4252. "when": "!gitlens:readonly && viewItem =~ /gitlens:file\\b.*?\\+staged\\b.*?/",
  4253. "group": "1_gitlens@1"
  4254. },
  4255. {
  4256. "command": "gitlens.stashSaveFiles",
  4257. "when": "!gitlens:readonly && viewItem =~ /gitlens:file\\b.*?\\+(un)?staged\\b.*?/",
  4258. "group": "1_gitlens@2"
  4259. },
  4260. {
  4261. "command": "gitlens.views.openChanges",
  4262. "when": "viewItem =~ /gitlens:file\\b/",
  4263. "group": "2_gitlens@1"
  4264. },
  4265. {
  4266. "command": "gitlens.externalDiff",
  4267. "when": "viewItem =~ /gitlens:file\\b/",
  4268. "group": "2_gitlens@2"
  4269. },
  4270. {
  4271. "command": "gitlens.views.openChangesWithWorking",
  4272. "when": "viewItem =~ /gitlens:file\\b/",
  4273. "group": "2_gitlens@3"
  4274. },
  4275. {
  4276. "command": "gitlens.views.openFile",
  4277. "when": "viewItem =~ /gitlens:(file|history:(file|line)|status:file)\\b/",
  4278. "group": "3_gitlens@1"
  4279. },
  4280. {
  4281. "command": "gitlens.views.openFileRevision",
  4282. "when": "viewItem =~ /gitlens:file\\b/",
  4283. "group": "3_gitlens@2"
  4284. },
  4285. {
  4286. "command": "gitlens.openFileInRemote",
  4287. "when": "viewItem =~ /gitlens:(file\\b(?!.*?\\+(un)?staged\\b.*?)|history:(file|line))\\b/ && gitlens:hasRemotes",
  4288. "group": "inline@99",
  4289. "alt": "gitlens.copyRemoteFileUrlToClipboard"
  4290. },
  4291. {
  4292. "command": "gitlens.openFileInRemote",
  4293. "when": "viewItem =~ /gitlens:file\\b/ && gitlens:hasRemotes",
  4294. "group": "4_gitlens@1"
  4295. },
  4296. {
  4297. "command": "gitlens.copyRemoteFileUrlToClipboard",
  4298. "when": "viewItem =~ /gitlens:(file|history:(file|line)|status:file)\\b/ && gitlens:hasRemotes",
  4299. "group": "5_gitlens@3"
  4300. },
  4301. {
  4302. "command": "gitlens.views.openFileRevisionInRemote",
  4303. "when": "viewItem == gitlens:file:commit && gitlens:hasRemotes",
  4304. "group": "4_gitlens@2"
  4305. },
  4306. {
  4307. "command": "gitlens.openFileInRemote",
  4308. "when": "viewItem =~ /gitlens:(history:(file|line)|status:file)\\b/ && gitlens:hasRemotes",
  4309. "group": "3_gitlens@2"
  4310. },
  4311. {
  4312. "command": "gitlens.views.applyChanges",
  4313. "when": "viewItem =~ /gitlens:file:(commit|results)\\b/",
  4314. "group": "5_gitlens_1@1"
  4315. },
  4316. {
  4317. "command": "gitlens.views.applyChanges",
  4318. "when": "!gitlens:readonly && viewItem == gitlens:file:stash",
  4319. "group": "1_gitlens@1"
  4320. },
  4321. {
  4322. "command": "gitlens.showQuickCommitDetails",
  4323. "when": "viewItem =~ /gitlens:file\\b(?!(:stash|:status))/",
  4324. "group": "5_gitlens_2@2"
  4325. },
  4326. {
  4327. "command": "gitlens.showCommitInView",
  4328. "when": "viewItem =~ /gitlens:file\\b(?!(:stash|:status))/",
  4329. "group": "5_gitlens_2@3"
  4330. },
  4331. {
  4332. "command": "gitlens.showQuickFileHistory",
  4333. "when": "viewItem =~ /gitlens:file\\b/",
  4334. "group": "8_gitlens@1"
  4335. },
  4336. {
  4337. "command": "gitlens.showFileHistoryInView",
  4338. "when": "viewItem =~ /gitlens:file\\b/",
  4339. "group": "8_gitlens@2"
  4340. },
  4341. {
  4342. "command": "gitlens.views.fetch",
  4343. "when": "!gitlens:readonly && viewItem =~ /gitlens:remote\\b/",
  4344. "group": "inline@97"
  4345. },
  4346. {
  4347. "command": "gitlens.openRepoInRemote",
  4348. "when": "viewItem =~ /gitlens:remote\\b/",
  4349. "group": "inline@98"
  4350. },
  4351. {
  4352. "command": "gitlens.views.fetch",
  4353. "when": "!gitlens:readonly && viewItem =~ /gitlens:remote\\b/",
  4354. "group": "1_gitlens@1"
  4355. },
  4356. {
  4357. "command": "gitlens.openRepoInRemote",
  4358. "when": "viewItem =~ /gitlens:remote\\b/",
  4359. "group": "2_gitlens@1"
  4360. },
  4361. {
  4362. "command": "gitlens.openBranchesInRemote",
  4363. "when": "viewItem =~ /gitlens:remote\\b/",
  4364. "group": "2_gitlens@2"
  4365. },
  4366. {
  4367. "command": "gitlens.views.terminalRemoveRemote",
  4368. "when": "!gitlens:readonly && viewItem =~ /gitlens:remote\\b/",
  4369. "group": "8_gitlens@1"
  4370. },
  4371. {
  4372. "command": "gitlens.views.setAsDefault",
  4373. "when": "viewItem =~ /gitlens:remote\\b(?!.*?\\+default\\b.*?)/",
  4374. "group": "8_gitlens_@1"
  4375. },
  4376. {
  4377. "command": "gitlens.views.unsetAsDefault",
  4378. "when": "viewItem =~ /gitlens:remote\\b.*?\\+default\\b.*?/",
  4379. "group": "8_gitlens_@1"
  4380. },
  4381. {
  4382. "command": "gitlens.views.exploreRepoRevision",
  4383. "when": "viewItem =~ /gitlens:(branch|commit|file:(commit|results)|stash|tag)\\b/",
  4384. "group": "7_gitlens_more@1"
  4385. },
  4386. {
  4387. "command": "gitlens.showCommitSearch",
  4388. "when": "viewItem =~ /gitlens:repository\\b/",
  4389. "group": "inline@10"
  4390. },
  4391. {
  4392. "command": "gitlens.views.star",
  4393. "when": "viewItem =~ /gitlens:repository\\b(?!.*?\\+starred\\b.*?)/",
  4394. "group": "inline@1"
  4395. },
  4396. {
  4397. "command": "gitlens.views.unstar",
  4398. "when": "viewItem =~ /gitlens:repository\\b.*?\\+starred\\b.*?/",
  4399. "group": "inline@2"
  4400. },
  4401. {
  4402. "command": "gitlens.views.push",
  4403. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4404. "group": "inline@97",
  4405. "alt": "gitlens.views.pushWithForce"
  4406. },
  4407. {
  4408. "command": "gitlens.views.pull",
  4409. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4410. "group": "inline@98"
  4411. },
  4412. {
  4413. "command": "gitlens.views.fetch",
  4414. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4415. "group": "inline@99"
  4416. },
  4417. {
  4418. "command": "gitlens.views.fetch",
  4419. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4420. "group": "1_gitlens@1"
  4421. },
  4422. {
  4423. "command": "gitlens.views.pull",
  4424. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4425. "group": "1_gitlens@1"
  4426. },
  4427. {
  4428. "command": "gitlens.views.push",
  4429. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4430. "group": "1_gitlens@1"
  4431. },
  4432. {
  4433. "command": "gitlens.views.pushWithForce",
  4434. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4435. "group": "1_gitlens@2"
  4436. },
  4437. {
  4438. "command": "gitlens.views.openInTerminal",
  4439. "when": "viewItem =~ /gitlens:repository\\b/",
  4440. "group": "2_gitlens@1"
  4441. },
  4442. {
  4443. "command": "gitlens.openRepoInRemote",
  4444. "when": "viewItem =~ /gitlens:repository\\b/ && gitlens:hasRemotes",
  4445. "group": "2_gitlens@2"
  4446. },
  4447. {
  4448. "command": "gitlens.showCommitSearch",
  4449. "when": "viewItem =~ /gitlens:repository\\b/",
  4450. "group": "3_gitlens@1"
  4451. },
  4452. {
  4453. "command": "gitlens.stashApply",
  4454. "when": "!gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4455. "group": "4_gitlens@1"
  4456. },
  4457. {
  4458. "command": "gitlens.stashSave",
  4459. "when": "!gitlens:readonly && viewItem =~ /gitlens:repository\\b/",
  4460. "group": "4_gitlens@2"
  4461. },
  4462. {
  4463. "command": "gitlens.views.star",
  4464. "when": "viewItem =~ /gitlens:repository\\b(?!.*?\\+starred\\b.*?)/",
  4465. "group": "8_gitlens@1"
  4466. },
  4467. {
  4468. "command": "gitlens.views.unstar",
  4469. "when": "viewItem =~ /gitlens:repository\\b.*?\\+starred\\b.*?/",
  4470. "group": "8_gitlens@1"
  4471. },
  4472. {
  4473. "command": "gitlens.views.closeRepository",
  4474. "when": "viewItem =~ /gitlens:repository\\b/",
  4475. "group": "8_gitlens@2"
  4476. },
  4477. {
  4478. "command": "gitlens.views.pull",
  4479. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:behind",
  4480. "group": "inline@1"
  4481. },
  4482. {
  4483. "command": "gitlens.views.pull",
  4484. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:behind",
  4485. "group": "1_gitlens@1"
  4486. },
  4487. {
  4488. "command": "gitlens.views.push",
  4489. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:ahead",
  4490. "group": "inline@1",
  4491. "alt": "gitlens.views.pushWithForce"
  4492. },
  4493. {
  4494. "command": "gitlens.views.push",
  4495. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:ahead",
  4496. "group": "1_gitlens@1"
  4497. },
  4498. {
  4499. "command": "gitlens.views.pushWithForce",
  4500. "when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:ahead",
  4501. "group": "1_gitlens@2"
  4502. },
  4503. {
  4504. "command": "gitlens.views.dismissNode",
  4505. "when": "viewItem =~ /gitlens:(compare:picker:ref|compare:results\\b(?!.*?\\+pinned\\b.*?)|search)\\b(?!:(commits|files))/",
  4506. "group": "inline@99"
  4507. },
  4508. {
  4509. "command": "gitlens.views.compare.pinComparison",
  4510. "when": "viewItem =~ /gitlens:compare:results\\b(?!.*?\\+pinned\\b.*?)/",
  4511. "group": "inline@1"
  4512. },
  4513. {
  4514. "command": "gitlens.views.compare.unpinComparison",
  4515. "when": "viewItem =~ /gitlens:compare:results\\b.*?\\+pinned\\b.*?/",
  4516. "group": "inline@1"
  4517. },
  4518. {
  4519. "command": "gitlens.views.compare.swapComparison",
  4520. "when": "viewItem =~ /gitlens:compare:results\\b/",
  4521. "group": "inline@2"
  4522. },
  4523. {
  4524. "command": "gitlens.views.refreshNode",
  4525. "when": "viewItem =~ /gitlens:compare:results\\b/",
  4526. "group": "inline@3"
  4527. },
  4528. {
  4529. "command": "gitlens.views.openDirectoryDiff",
  4530. "when": "viewItem =~ /gitlens:compare:results\\b/",
  4531. "group": "1_gitlens@1"
  4532. },
  4533. {
  4534. "command": "gitlens.views.compare.pinComparison",
  4535. "when": "viewItem =~ /gitlens:compare:results\\b(?!.*?\\+pinned\\b.*?)/",
  4536. "group": "2_gitlens@1"
  4537. },
  4538. {
  4539. "command": "gitlens.views.compare.unpinComparison",
  4540. "when": "viewItem =~ /gitlens:compare:results\\b.*?\\+pinned\\b.*?/",
  4541. "group": "2_gitlens@1"
  4542. },
  4543. {
  4544. "command": "gitlens.views.compare.swapComparison",
  4545. "when": "viewItem =~ /gitlens:compare:results\\b/",
  4546. "group": "2_gitlens@2"
  4547. },
  4548. {
  4549. "command": "gitlens.views.search.searchCommits",
  4550. "when": "viewItem == gitlens:search:results",
  4551. "group": "inline@1"
  4552. },
  4553. {
  4554. "command": "gitlens.views.search.searchCommits",
  4555. "when": "viewItem == gitlens:search:results",
  4556. "group": "2_gitlens@1"
  4557. },
  4558. {
  4559. "command": "gitlens.stashSave",
  4560. "when": "!gitlens:readonly && viewItem =~ /^gitlens:(stashes|status:files)$/",
  4561. "group": "inline@98"
  4562. },
  4563. {
  4564. "command": "gitlens.stashApply",
  4565. "when": "!gitlens:readonly && viewItem == gitlens:stashes",
  4566. "group": "inline@99"
  4567. },
  4568. {
  4569. "command": "gitlens.stashSave",
  4570. "when": "!gitlens:readonly && viewItem =~ /^gitlens:(stashes|status:files)$/",
  4571. "group": "1_gitlens@1"
  4572. },
  4573. {
  4574. "command": "gitlens.stashApply",
  4575. "when": "!gitlens:readonly && viewItem == gitlens:stashes",
  4576. "group": "1_gitlens@2"
  4577. },
  4578. {
  4579. "command": "gitlens.stashApply",
  4580. "when": "!gitlens:readonly && viewItem == gitlens:stash",
  4581. "group": "inline@98"
  4582. },
  4583. {
  4584. "command": "gitlens.stashDelete",
  4585. "when": "!gitlens:readonly && viewItem == gitlens:stash",
  4586. "group": "inline@99"
  4587. },
  4588. {
  4589. "command": "gitlens.stashApply",
  4590. "when": "!gitlens:readonly && viewItem == gitlens:stash",
  4591. "group": "1_gitlens@1"
  4592. },
  4593. {
  4594. "command": "gitlens.stashDelete",
  4595. "when": "!gitlens:readonly && viewItem == gitlens:stash",
  4596. "group": "1_gitlens@2"
  4597. },
  4598. {
  4599. "command": "gitlens.views.checkout",
  4600. "when": "!gitlens:readonly && viewItem =~ /gitlens:tag\\b/",
  4601. "group": "inline@10"
  4602. },
  4603. {
  4604. "command": "gitlens.views.checkout",
  4605. "when": "!gitlens:readonly && viewItem =~ /gitlens:tag\\b/",
  4606. "group": "1_gitlens@1"
  4607. },
  4608. {
  4609. "command": "gitlens.views.terminalDeleteTag",
  4610. "when": "!gitlens:readonly && viewItem == gitlens:tag",
  4611. "group": "8_gitlens"
  4612. },
  4613. {
  4614. "command": "gitlens.views.stageDirectory",
  4615. "when": "viewItem =~ /gitlens:folder\\b.*?\\+working\\b.*?/",
  4616. "group": "inline@1"
  4617. },
  4618. {
  4619. "command": "gitlens.views.unstageDirectory",
  4620. "when": "viewItem =~ /gitlens:folder\\b.*?\\+working\\b.*?/",
  4621. "group": "inline@2"
  4622. },
  4623. {
  4624. "command": "gitlens.views.stageDirectory",
  4625. "when": "viewItem =~ /gitlens:folder\\b.*?\\+working\\b.*?/",
  4626. "group": "1_gitlens@1"
  4627. },
  4628. {
  4629. "command": "gitlens.views.unstageDirectory",
  4630. "when": "viewItem =~ /gitlens:folder\\b.*?\\+working\\b.*?/",
  4631. "group": "1_gitlens@2"
  4632. },
  4633. {
  4634. "command": "gitlens.views.expandNode",
  4635. "when": "viewItem =~ /gitlens:(compare|folder|results|search|status:files)\\b/",
  4636. "group": "8_gitlens@1"
  4637. },
  4638. {
  4639. "command": "gitlens.views.dismissNode",
  4640. "when": "viewItem =~ /gitlens:(compare:picker:ref|compare:results\\b(?!.*?\\+pinned\\b.*?)|search)\\b(?!:(commits|files))/",
  4641. "group": "8_gitlens@2"
  4642. },
  4643. {
  4644. "command": "gitlens.views.refreshNode",
  4645. "when": "viewItem =~ /gitlens:(?!file\\b)/",
  4646. "group": "9_gitlens@1"
  4647. }
  4648. ]
  4649. },
  4650. "keybindings": [
  4651. {
  4652. "command": "gitlens.key.left",
  4653. "key": "alt+left",
  4654. "when": "gitlens:key:left"
  4655. },
  4656. {
  4657. "command": "gitlens.key.right",
  4658. "key": "alt+right",
  4659. "when": "gitlens:key:right"
  4660. },
  4661. {
  4662. "command": "gitlens.key.,",
  4663. "key": "alt+,",
  4664. "when": "gitlens:key:,"
  4665. },
  4666. {
  4667. "command": "gitlens.key..",
  4668. "key": "alt+.",
  4669. "when": "gitlens:key:."
  4670. },
  4671. {
  4672. "command": "gitlens.key.escape",
  4673. "key": "escape",
  4674. "when": "gitlens:key:escape && editorTextFocus && !findWidgetVisible && !renameInputVisible && !suggestWidgetVisible && !isInEmbeddedEditor"
  4675. },
  4676. {
  4677. "command": "gitlens.toggleFileBlame",
  4678. "key": "alt+b",
  4679. "when": "config.gitlens.keymap == alternate && editorTextFocus && gitlens:activeFileStatus =~ /blameable/"
  4680. },
  4681. {
  4682. "command": "gitlens.toggleCodeLens",
  4683. "key": "shift+alt+b",
  4684. "when": "config.gitlens.keymap == alternate && editorTextFocus && gitlens:enabled && gitlens:canToggleCodeLens"
  4685. },
  4686. {
  4687. "command": "gitlens.showLastQuickPick",
  4688. "key": "alt+-",
  4689. "when": "config.gitlens.keymap == alternate && gitlens:enabled"
  4690. },
  4691. {
  4692. "command": "gitlens.showCommitSearch",
  4693. "key": "alt+/",
  4694. "when": "config.gitlens.keymap == alternate && gitlens:enabled"
  4695. },
  4696. {
  4697. "command": "gitlens.showQuickFileHistory",
  4698. "key": "alt+h",
  4699. "when": "config.gitlens.keymap == alternate && gitlens:enabled"
  4700. },
  4701. {
  4702. "command": "gitlens.showQuickRepoHistory",
  4703. "key": "shift+alt+h",
  4704. "when": "config.gitlens.keymap == alternate && gitlens:enabled"
  4705. },
  4706. {
  4707. "command": "gitlens.showQuickRepoStatus",
  4708. "key": "alt+s",
  4709. "when": "config.gitlens.keymap == alternate && gitlens:enabled"
  4710. },
  4711. {
  4712. "command": "gitlens.showQuickCommitFileDetails",
  4713. "key": "alt+c",
  4714. "when": "config.gitlens.keymap == alternate && editorTextFocus && gitlens:enabled"
  4715. },
  4716. {
  4717. "command": "gitlens.diffWithNext",
  4718. "key": "alt+.",
  4719. "when": "config.gitlens.keymap == alternate && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4720. },
  4721. {
  4722. "command": "gitlens.diffWithNextInDiff",
  4723. "key": "alt+.",
  4724. "when": "config.gitlens.keymap == alternate && isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4725. },
  4726. {
  4727. "command": "gitlens.diffWithPrevious",
  4728. "key": "alt+,",
  4729. "when": "config.gitlens.keymap == alternate && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  4730. },
  4731. {
  4732. "command": "gitlens.diffWithPreviousInDiff",
  4733. "key": "alt+,",
  4734. "when": "config.gitlens.keymap == alternate && isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  4735. },
  4736. {
  4737. "command": "gitlens.diffLineWithPrevious",
  4738. "key": "shift+alt+,",
  4739. "when": "config.gitlens.keymap == alternate && editorTextFocus && gitlens:activeFileStatus =~ /tracked/"
  4740. },
  4741. {
  4742. "command": "gitlens.diffWithWorking",
  4743. "key": "shift+alt+.",
  4744. "when": "config.gitlens.keymap == alternate && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4745. },
  4746. {
  4747. "command": "gitlens.diffWithWorkingInDiff",
  4748. "key": "shift+alt+.",
  4749. "when": "config.gitlens.keymap == alternate && isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4750. },
  4751. {
  4752. "command": "gitlens.diffLineWithWorking",
  4753. "key": "alt+w",
  4754. "when": "config.gitlens.keymap == alternate && editorTextFocus && gitlens:activeFileStatus =~ /tracked/"
  4755. },
  4756. {
  4757. "command": "gitlens.toggleFileBlame",
  4758. "key": "ctrl+shift+g b",
  4759. "mac": "cmd+alt+g b",
  4760. "when": "config.gitlens.keymap == chorded && editorTextFocus && gitlens:activeFileStatus =~ /blameable/"
  4761. },
  4762. {
  4763. "command": "gitlens.toggleCodeLens",
  4764. "key": "ctrl+shift+g shift+b",
  4765. "mac": "cmd+alt+g shift+b",
  4766. "when": "config.gitlens.keymap == chorded && editorTextFocus && gitlens:enabled && gitlens:canToggleCodeLens"
  4767. },
  4768. {
  4769. "command": "gitlens.showLastQuickPick",
  4770. "key": "ctrl+shift+g -",
  4771. "mac": "cmd+alt+g -",
  4772. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4773. },
  4774. {
  4775. "command": "gitlens.showCommitSearch",
  4776. "key": "ctrl+shift+g /",
  4777. "mac": "cmd+alt+g /",
  4778. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4779. },
  4780. {
  4781. "command": "gitlens.showQuickFileHistory",
  4782. "key": "ctrl+shift+g h",
  4783. "mac": "cmd+alt+g h",
  4784. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4785. },
  4786. {
  4787. "command": "gitlens.showQuickRepoHistory",
  4788. "key": "ctrl+shift+g shift+h",
  4789. "mac": "cmd+alt+g shift+h",
  4790. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4791. },
  4792. {
  4793. "command": "gitlens.showQuickRepoStatus",
  4794. "key": "ctrl+shift+g s",
  4795. "mac": "cmd+alt+g s",
  4796. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4797. },
  4798. {
  4799. "command": "gitlens.showQuickCommitFileDetails",
  4800. "key": "ctrl+shift+g c",
  4801. "mac": "cmd+alt+g c",
  4802. "when": "config.gitlens.keymap == chorded && editorTextFocus && gitlens:enabled"
  4803. },
  4804. {
  4805. "command": "gitlens.diffWithNext",
  4806. "key": "ctrl+shift+g .",
  4807. "mac": "cmd+alt+g .",
  4808. "when": "config.gitlens.keymap == chorded && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4809. },
  4810. {
  4811. "command": "gitlens.diffWithNextInDiff",
  4812. "key": "ctrl+shift+g .",
  4813. "mac": "cmd+alt+g .",
  4814. "when": "config.gitlens.keymap == chorded && isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4815. },
  4816. {
  4817. "command": "gitlens.diffWithPrevious",
  4818. "key": "ctrl+shift+g ,",
  4819. "mac": "cmd+alt+g ,",
  4820. "when": "config.gitlens.keymap == chorded && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  4821. },
  4822. {
  4823. "command": "gitlens.diffWithPreviousInDiff",
  4824. "key": "ctrl+shift+g ,",
  4825. "mac": "cmd+alt+g ,",
  4826. "when": "config.gitlens.keymap == chorded && isInDiffEditor && gitlens:activeFileStatus =~ /tracked/"
  4827. },
  4828. {
  4829. "command": "gitlens.diffLineWithPrevious",
  4830. "key": "ctrl+shift+g shift+,",
  4831. "mac": "cmd+alt+g shift+,",
  4832. "when": "config.gitlens.keymap == chorded && editorTextFocus && gitlens:activeFileStatus =~ /tracked/"
  4833. },
  4834. {
  4835. "command": "gitlens.diffWithWorking",
  4836. "key": "ctrl+shift+g shift+.",
  4837. "mac": "cmd+alt+g shift+.",
  4838. "when": "config.gitlens.keymap == chorded && editorTextFocus && !isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4839. },
  4840. {
  4841. "command": "gitlens.diffWithWorkingInDiff",
  4842. "key": "ctrl+shift+g shift+.",
  4843. "mac": "cmd+alt+g shift+.",
  4844. "when": "config.gitlens.keymap == chorded && isInDiffEditor && gitlens:activeFileStatus =~ /revision/"
  4845. },
  4846. {
  4847. "command": "gitlens.diffLineWithWorking",
  4848. "key": "ctrl+shift+g w",
  4849. "mac": "cmd+alt+g w",
  4850. "when": "config.gitlens.keymap == chorded && editorTextFocus && gitlens:activeFileStatus =~ /tracked/"
  4851. },
  4852. {
  4853. "command": "workbench.view.scm",
  4854. "key": "ctrl+shift+g g",
  4855. "mac": "ctrl+shift+g",
  4856. "when": "config.gitlens.keymap == chorded && gitlens:enabled"
  4857. }
  4858. ],
  4859. "resourceLabelFormatters": [
  4860. {
  4861. "scheme": "gitlens",
  4862. "authority": "*",
  4863. "formatting": {
  4864. "label": "${path} (${authority})",
  4865. "separator": "/"
  4866. }
  4867. }
  4868. ],
  4869. "viewsContainers": {
  4870. "activitybar": [
  4871. {
  4872. "id": "gitlens",
  4873. "title": "GitLens",
  4874. "icon": "images/gitlens-activitybar.svg"
  4875. }
  4876. ]
  4877. },
  4878. "views": {
  4879. "gitlens": [
  4880. {
  4881. "id": "gitlens.views.repositories:gitlens",
  4882. "name": "Repositories",
  4883. "when": "config.gitlens.views.repositories.enabled && config.gitlens.views.repositories.location == gitlens"
  4884. },
  4885. {
  4886. "id": "gitlens.views.fileHistory:gitlens",
  4887. "name": "File History",
  4888. "when": "config.gitlens.views.fileHistory.enabled && config.gitlens.views.fileHistory.location == gitlens"
  4889. },
  4890. {
  4891. "id": "gitlens.views.lineHistory:gitlens",
  4892. "name": "Line History",
  4893. "when": "config.gitlens.views.lineHistory.enabled && config.gitlens.views.lineHistory.location == gitlens"
  4894. },
  4895. {
  4896. "id": "gitlens.views.compare:gitlens",
  4897. "name": "Compare",
  4898. "when": "config.gitlens.views.compare.enabled && config.gitlens.views.compare.location == gitlens"
  4899. },
  4900. {
  4901. "id": "gitlens.views.search:gitlens",
  4902. "name": "Search Commits",
  4903. "when": "config.gitlens.views.search.enabled && config.gitlens.views.search.location == gitlens"
  4904. }
  4905. ],
  4906. "explorer": [
  4907. {
  4908. "id": "gitlens.views.repositories:explorer",
  4909. "name": "GitLens: Repositories",
  4910. "when": "gitlens:enabled && config.gitlens.views.repositories.enabled && config.gitlens.views.repositories.location == explorer"
  4911. },
  4912. {
  4913. "id": "gitlens.views.fileHistory:explorer",
  4914. "name": "GitLens: File History",
  4915. "when": "gitlens:enabled && config.gitlens.views.fileHistory.enabled && config.gitlens.views.fileHistory.location == explorer"
  4916. },
  4917. {
  4918. "id": "gitlens.views.lineHistory:explorer",
  4919. "name": "GitLens: Line History",
  4920. "when": "gitlens:enabled && config.gitlens.views.lineHistory.enabled && config.gitlens.views.lineHistory.location == explorer"
  4921. },
  4922. {
  4923. "id": "gitlens.views.compare:explorer",
  4924. "name": "GitLens: Compare",
  4925. "when": "gitlens:enabled && config.gitlens.views.compare.enabled && config.gitlens.views.compare.location == explorer"
  4926. },
  4927. {
  4928. "id": "gitlens.views.search:explorer",
  4929. "name": "GitLens: Search Commits",
  4930. "when": "gitlens:enabled && config.gitlens.views.search.enabled && config.gitlens.views.search.location == explorer"
  4931. }
  4932. ],
  4933. "scm": [
  4934. {
  4935. "id": "gitlens.views.repositories:scm",
  4936. "name": "GitLens: Repositories",
  4937. "when": "gitlens:enabled && config.gitlens.views.repositories.enabled && config.gitlens.views.repositories.location == scm"
  4938. },
  4939. {
  4940. "id": "gitlens.views.fileHistory:scm",
  4941. "name": "GitLens: File History",
  4942. "when": "gitlens:enabled && config.gitlens.views.fileHistory.enabled && config.gitlens.views.fileHistory.location == scm"
  4943. },
  4944. {
  4945. "id": "gitlens.views.lineHistory:scm",
  4946. "name": "GitLens: Line History",
  4947. "when": "gitlens:enabled && config.gitlens.views.lineHistory.enabled && config.gitlens.views.lineHistory.location == scm"
  4948. },
  4949. {
  4950. "id": "gitlens.views.compare:scm",
  4951. "name": "GitLens: Compare",
  4952. "when": "gitlens:enabled && config.gitlens.views.compare.enabled && config.gitlens.views.compare.location == scm"
  4953. },
  4954. {
  4955. "id": "gitlens.views.search:scm",
  4956. "name": "GitLens: Search Commits",
  4957. "when": "gitlens:enabled && config.gitlens.views.search.enabled && config.gitlens.views.search.location == scm"
  4958. }
  4959. ]
  4960. }
  4961. },
  4962. "scripts": {
  4963. "analyze:bundle": "webpack --env.analyzeBundle",
  4964. "analyze:deps": "webpack --env.analyzeDeps",
  4965. "build": "webpack --env.development",
  4966. "bundle": "webpack --env.production",
  4967. "clean": "git clean -Xdf -e !.cache-images -e !node_modules -e !node_modules/**/*",
  4968. "lint": "eslint src/**/*.ts --fix",
  4969. "pack": "vsce package",
  4970. "pretty": "prettier --config .prettierrc --loglevel warn --write \"./**/*.{ts,md,json}\" && npm run lint",
  4971. "pub": "vsce publish",
  4972. "rebuild": "npm run reset && npm run build",
  4973. "reset": "npm run clean && npm install --no-save",
  4974. "watch": "webpack --watch --env.development --info-verbosity verbose",
  4975. "ui:optimize": "webpack --config-name ui --env.optimizeImages",
  4976. "ui:watch": "webpack --watch --config-name ui --env.development --info-verbosity verbose",
  4977. "update:emoji": "pushd emoji && node ./shortcodeToEmoji.js && popd",
  4978. "postinstall": "node ./node_modules/vscode/bin/install",
  4979. "vscode:prepublish": "npm run reset && npm run bundle"
  4980. },
  4981. "dependencies": {
  4982. "date-fns": "1.30.1",
  4983. "iconv-lite": "0.4.24",
  4984. "lodash-es": "4.17.11",
  4985. "vsls": "0.3.1291"
  4986. },
  4987. "devDependencies": {
  4988. "@types/lodash-es": "4.17.3",
  4989. "@types/node": "10.1.4",
  4990. "@typescript-eslint/eslint-plugin": "1.5.0",
  4991. "@typescript-eslint/parser": "1.5.0",
  4992. "clean-webpack-plugin": "2.0.1",
  4993. "circular-dependency-plugin": "5.0.2",
  4994. "css-loader": "2.1.1",
  4995. "eslint": "5.15.3",
  4996. "eslint-cli": "1.1.1",
  4997. "eslint-config-prettier": "4.1.0",
  4998. "eslint-loader": "2.1.2",
  4999. "eslint-plugin-import": "2.16.0",
  5000. "eslint-plugin-prettiest": "0.0.1",
  5001. "html-webpack-inline-source-plugin": "0.0.10",
  5002. "html-webpack-plugin": "3.2.0",
  5003. "imagemin-webpack-plugin": "2.4.2",
  5004. "mini-css-extract-plugin": "0.5.0",
  5005. "node-sass": "4.11.0",
  5006. "prettier": "1.16.4",
  5007. "prettier-eslint": "8.8.2",
  5008. "sass-loader": "7.1.0",
  5009. "terser-webpack-plugin": "1.2.3",
  5010. "ts-loader": "5.3.3",
  5011. "typescript": "3.2.4",
  5012. "vsce": "1.59.0",
  5013. "vscode": "1.1.33",
  5014. "webpack": "4.29.6",
  5015. "webpack-cli": "3.3.0",
  5016. "webpack-bundle-analyzer": "3.1.0"
  5017. }
  5018. }