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.

762 lines
34 KiB

7 years ago
8 years ago
7 years ago
  1. {
  2. "name": "gitlens",
  3. "version": "2.12.0",
  4. "author": {
  5. "name": "Eric Amodio",
  6. "email": "eamodio@gmail.com"
  7. },
  8. "publisher": "eamodio",
  9. "engines": {
  10. "vscode": "^1.9.0"
  11. },
  12. "license": "SEE LICENSE IN LICENSE",
  13. "displayName": "GitLens",
  14. "description": "Provides Git CodeLens information (most recent commit, # of authors), on-demand inline blame annotations, status bar blame information, file & blame history explorers, and commands to compare changes",
  15. "categories": [
  16. "Other"
  17. ],
  18. "keywords": [
  19. "git",
  20. "blame",
  21. "history",
  22. "codelens",
  23. "annotation"
  24. ],
  25. "galleryBanner": {
  26. "color": "#56098c",
  27. "theme": "dark"
  28. },
  29. "icon": "images/gitlens-icon.svg",
  30. "preview": false,
  31. "homepage": "https://github.com/eamodio/vscode-gitlens/blob/master/README.md",
  32. "bugs": {
  33. "url": "https://github.com/eamodio/vscode-gitlens/issues"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/eamodio/vscode-gitlens.git"
  38. },
  39. "main": "./out/src/extension",
  40. "contributes": {
  41. "configuration": {
  42. "type": "object",
  43. "title": "GitLens configuration",
  44. "properties": {
  45. "gitlens.blame.annotation.style": {
  46. "type": "string",
  47. "default": "expanded",
  48. "enum": [
  49. "compact",
  50. "expanded",
  51. "trailing"
  52. ],
  53. "description": "Specifies the style of the blame annotations. `compact` - groups annotations to limit the repetition and also adds author and date when possible. `expanded` - shows an annotation before every line. `trailing` - shows an annotation after every line"
  54. },
  55. "gitlens.blame.annotation.highlight": {
  56. "type": "string",
  57. "default": "both",
  58. "enum": [
  59. "none",
  60. "gutter",
  61. "line",
  62. "both"
  63. ],
  64. "description": "Specifies whether and how to highlight blame annotations. `none` - no highlight. `gutter` - adds a gutter icon. `line` - adds a full-line highlight. `both` - adds both `gutter` and `line` highlights"
  65. },
  66. "gitlens.blame.annotation.sha": {
  67. "type": "boolean",
  68. "default": true,
  69. "description": "Specifies whether the commit sha will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
  70. },
  71. "gitlens.blame.annotation.author": {
  72. "type": "boolean",
  73. "default": true,
  74. "description": "Specifies whether the committer will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
  75. },
  76. "gitlens.blame.annotation.date": {
  77. "type": "string",
  78. "default": "off",
  79. "enum": [
  80. "off",
  81. "relative",
  82. "absolute"
  83. ],
  84. "description": "Specifies whether and how the commit date will be shown in the blame annotations. `off` - no date. `relative` - relative date (e.g. 1 day ago). `absolute` - date format specified by `gitlens.blame.annotation.dateFormat`. Applies only to the `expanded` & `trailing` annotation styles"
  85. },
  86. "gitlens.blame.annotation.dateFormat": {
  87. "type": "string",
  88. "default": "",
  89. "description": "Specifies the date format of how absolute dates will be shown in the blame annotations. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  90. },
  91. "gitlens.blame.annotation.message": {
  92. "type": "boolean",
  93. "default": false,
  94. "description": "Specifies whether the commit message will be shown in the blame annotations. Applies only to the `expanded` & `trailing` annotation styles"
  95. },
  96. "gitlens.blame.annotation.activeLine": {
  97. "type": "string",
  98. "default": "both",
  99. "enum": [
  100. "off",
  101. "inline",
  102. "hover",
  103. "both"
  104. ],
  105. "description": "Specifies whether and how to show blame annotations on the active line. `off` - no annotation. `inline` - adds a trailing annotation to the active line. `hover` - adds hover annotation to the active line. `both` - adds both `inline` and `hover` annotations"
  106. },
  107. "gitlens.blame.annotation.characters.ellipse": {
  108. "type": "string",
  109. "default": "\u2026",
  110. "description": "Specifies the ellipse character to use in blame annotations"
  111. },
  112. "gitlens.blame.annotation.characters.indent": {
  113. "type": "string",
  114. "default": "\u2759",
  115. "description": "Specifies the indent character to use in `compact` blame annotations"
  116. },
  117. "gitlens.blame.annotation.characters.padding": {
  118. "type": "string",
  119. "default": "\u00a0",
  120. "description": "Specifies the padding character (typically a non-breaking space) to use in blame annotations"
  121. },
  122. "gitlens.blame.annotation.characters.separator": {
  123. "type": "string",
  124. "default": "\u2022",
  125. "description": "Specifies the separator character to use in blame annotations"
  126. },
  127. "gitlens.codeLens.visibility": {
  128. "type": "string",
  129. "default": "auto",
  130. "enum": [
  131. "auto",
  132. "ondemand",
  133. "off"
  134. ],
  135. "description": "Specifies when CodeLens will be triggered in the active document. `auto` - automatically. `ondemand` - only when requested. `off` - disables all active document CodeLens"
  136. },
  137. "gitlens.codeLens.location": {
  138. "type": "string",
  139. "default": "document+containers",
  140. "enum": [
  141. "all",
  142. "document+containers",
  143. "document",
  144. "custom"
  145. ],
  146. "description": "Specifies where CodeLens will be rendered in the active document. `all` - render at the top of the document, on container-like (classes, modules, etc), and on member-like (methods, functions, properties, etc) lines. `document+containers` - render at the top of the document and on container-like lines. `document` - only render at the top of the document. `custom` - rendering controlled by `gitlens.codeLens.locationCustomSymbols`"
  147. },
  148. "gitlens.codeLens.locationCustomSymbols": {
  149. "type": "array",
  150. "description": "Specifies the set of document symbols to render active document CodeLens on. Must be a member of `SymbolKind`"
  151. },
  152. "gitlens.codeLens.languageLocations": {
  153. "type": "array",
  154. "default": [
  155. {
  156. "language": "json",
  157. "location": "document"
  158. },
  159. {
  160. "language": "css",
  161. "location": "document"
  162. },
  163. {
  164. "language": "scss",
  165. "location": "document"
  166. },
  167. {
  168. "language": "less",
  169. "location": "document"
  170. }
  171. ],
  172. "items": {
  173. "type": "object",
  174. "required": [
  175. "language",
  176. "location"
  177. ],
  178. "properties": {
  179. "language": {
  180. "type": "string",
  181. "description": "Specifies the language to which this CodeLens override applies"
  182. },
  183. "location": {
  184. "type": "string",
  185. "default": "document+containers",
  186. "enum": [
  187. "all",
  188. "document+containers",
  189. "document",
  190. "custom",
  191. "none"
  192. ],
  193. "description": "Specifies where CodeLens will be rendered in the active document for the specified language. `all` - render at the top of the document, on container-like (classes, modules, etc), and on member-like (methods, functions, properties, etc) lines. `document+containers` - render at the top of the document and on container-like lines. `document` - only render at the top of the document. `custom` - rendering controlled by `customSymbols`"
  194. },
  195. "customSymbols": {
  196. "type": "string",
  197. "description": "Specifies the set of document symbols to render active document CodeLens on. Must be a member of `SymbolKind`"
  198. }
  199. }
  200. },
  201. "uniqueItems": true,
  202. "enum": [
  203. "all",
  204. "document+containers",
  205. "document",
  206. "custom"
  207. ],
  208. "description": "Specifies where CodeLens will be rendered in the active document for the specified languages"
  209. },
  210. "gitlens.codeLens.recentChange.enabled": {
  211. "type": "boolean",
  212. "default": true,
  213. "description": "Specifies whether the recent change CodeLens is shown"
  214. },
  215. "gitlens.codeLens.recentChange.command": {
  216. "type": "string",
  217. "default": "gitlens.showQuickCommitFileDetails",
  218. "enum": [
  219. "gitlens.toggleBlame",
  220. "gitlens.showBlameHistory",
  221. "gitlens.showFileHistory",
  222. "gitlens.diffWithPrevious",
  223. "gitlens.showQuickCommitDetails",
  224. "gitlens.showQuickCommitFileDetails",
  225. "gitlens.showQuickFileHistory",
  226. "gitlens.showQuickRepoHistory"
  227. ],
  228. "description": "Specifies the command executed when the recent change CodeLens is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current checked-in file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickFileHistory` - shows a repository history quick pick"
  229. },
  230. "gitlens.codeLens.authors.enabled": {
  231. "type": "boolean",
  232. "default": true,
  233. "description": "Specifies whether the authors CodeLens is shown"
  234. },
  235. "gitlens.codeLens.authors.command": {
  236. "type": "string",
  237. "default": "gitlens.toggleBlame",
  238. "enum": [
  239. "gitlens.toggleBlame",
  240. "gitlens.showBlameHistory",
  241. "gitlens.showFileHistory",
  242. "gitlens.diffWithPrevious",
  243. "gitlens.showQuickCommitDetails",
  244. "gitlens.showQuickCommitFileDetails",
  245. "gitlens.showQuickFileHistory",
  246. "gitlens.showQuickRepoHistory"
  247. ],
  248. "description": "Specifies the command executed when the authors CodeLens is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current checked-in file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickFileHistory` - shows a repository history quick pick"
  249. },
  250. "gitlens.menus.diff.enabled": {
  251. "type": "boolean",
  252. "default": true,
  253. "description": "Specifies whether diff commands will be added to the context menus"
  254. },
  255. "gitlens.statusBar.enabled": {
  256. "type": "boolean",
  257. "default": true,
  258. "description": "Specifies whether blame information is shown in the status bar"
  259. },
  260. "gitlens.statusBar.command": {
  261. "type": "string",
  262. "default": "gitlens.showQuickCommitDetails",
  263. "enum": [
  264. "gitlens.toggleBlame",
  265. "gitlens.showBlameHistory",
  266. "gitlens.showFileHistory",
  267. "gitlens.diffWithPrevious",
  268. "gitlens.toggleCodeLens",
  269. "gitlens.showQuickCommitDetails",
  270. "gitlens.showQuickCommitFileDetails",
  271. "gitlens.showQuickFileHistory",
  272. "gitlens.showQuickRepoHistory"
  273. ],
  274. "description": "Specifies the command executed when the blame status bar item is clicked. `gitlens.toggleBlame` - toggles blame annotations. `gitlens.showBlameHistory` - opens the blame history explorer. `gitlens.showFileHistory` - opens the file history explorer. `gitlens.diffWithPrevious` - compares the current checked-in file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.showQuickFileHistory` - shows a repository history quick pick"
  275. },
  276. "gitlens.statusBar.date": {
  277. "type": "string",
  278. "default": "relative",
  279. "enum": [
  280. "off",
  281. "relative",
  282. "absolute"
  283. ],
  284. "description": "Specifies whether and how the commit date will be shown in the blame status bar. `off` - no date. `relative` - relative date (e.g. 1 day ago). `absolute` - date format specified by `gitlens.statusBar.dateFormat`"
  285. },
  286. "gitlens.statusBar.dateFormat": {
  287. "type": "string",
  288. "default": "",
  289. "description": "Specifies the date format of how absolute dates will be shown in the blame status bar. See https://momentjs.com/docs/#/displaying/format/ for valid formats"
  290. },
  291. "gitlens.advanced.caching.enabled": {
  292. "type": "boolean",
  293. "default": true,
  294. "description": "Specifies whether git blame output will be cached"
  295. },
  296. "gitlens.advanced.caching.statusBar.maxLines": {
  297. "type": "number",
  298. "default": 0,
  299. "description": "Specifies whether status bar git blame output will be cached for larger documents"
  300. },
  301. "gitlens.advanced.debug": {
  302. "type": "boolean",
  303. "default": false,
  304. "description": "Specifies debug mode"
  305. },
  306. "gitlens.advanced.git": {
  307. "type": "string",
  308. "default": null,
  309. "description": "Specifies a git path to use"
  310. },
  311. "gitlens.advanced.gitignore.enabled": {
  312. "type": "boolean",
  313. "default": true,
  314. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  315. },
  316. "gitlens.advanced.maxQuickHistory": {
  317. "type": "number",
  318. "default": 200,
  319. "description": "Specifies the maximum number of QuickPick history entries to show"
  320. },
  321. "gitlens.advanced.output.level": {
  322. "type": "string",
  323. "default": "silent",
  324. "enum": [
  325. "silent",
  326. "errors",
  327. "verbose"
  328. ],
  329. "description": "Specifies how much (if any) output will be sent to the GitLens output channel"
  330. },
  331. "gitlens.advanced.quickPick.closeOnFocusOut": {
  332. "type": "boolean",
  333. "default": true,
  334. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  335. },
  336. "gitlens.advanced.toggleWhitespace.enabled": {
  337. "type": "boolean",
  338. "default": false,
  339. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  340. }
  341. }
  342. },
  343. "commands": [
  344. {
  345. "command": "gitlens.diffDirectory",
  346. "title": "Directory Compare",
  347. "category": "GitLens"
  348. },
  349. {
  350. "command": "gitlens.diffWithNext",
  351. "title": "Compare with Next Commit",
  352. "category": "GitLens"
  353. },
  354. {
  355. "command": "gitlens.diffWithPrevious",
  356. "title": "Compare with Previous Commit",
  357. "category": "GitLens"
  358. },
  359. {
  360. "command": "gitlens.diffLineWithPrevious",
  361. "title": "Compare Line with Previous Commit",
  362. "category": "GitLens"
  363. },
  364. {
  365. "command": "gitlens.diffWithWorking",
  366. "title": "Compare with Working Tree",
  367. "category": "GitLens"
  368. },
  369. {
  370. "command": "gitlens.diffLineWithWorking",
  371. "title": "Compare Line with Working Tree",
  372. "category": "GitLens"
  373. },
  374. {
  375. "command": "gitlens.showBlame",
  376. "title": "Show Blame Annotations",
  377. "category": "GitLens"
  378. },
  379. {
  380. "command": "gitlens.toggleBlame",
  381. "title": "Toggle Blame Annotations",
  382. "category": "GitLens",
  383. "icon": {
  384. "dark": "images/git-icon-dark.svg",
  385. "light": "images/git-icon-light.svg"
  386. }
  387. },
  388. {
  389. "command": "gitlens.toggleCodeLens",
  390. "title": "Toggle Git CodeLens",
  391. "category": "GitLens"
  392. },
  393. {
  394. "command": "gitlens.showBlameHistory",
  395. "title": "Open Blame History Explorer",
  396. "category": "GitLens"
  397. },
  398. {
  399. "command": "gitlens.showFileHistory",
  400. "title": "Open File History Explorer",
  401. "category": "GitLens"
  402. },
  403. {
  404. "command": "gitlens.showQuickCommitDetails",
  405. "title": "Show Commit Details",
  406. "category": "GitLens"
  407. },
  408. {
  409. "command": "gitlens.showQuickCommitFileDetails",
  410. "title": "Show Line Commit Details",
  411. "category": "GitLens"
  412. },
  413. {
  414. "command": "gitlens.showQuickFileHistory",
  415. "title": "Show File History",
  416. "category": "GitLens"
  417. },
  418. {
  419. "command": "gitlens.showQuickRepoHistory",
  420. "title": "Show Repository History",
  421. "category": "GitLens"
  422. },
  423. {
  424. "command": "gitlens.showQuickRepoStatus",
  425. "title": "Show Repository Status",
  426. "category": "GitLens"
  427. },
  428. {
  429. "command": "gitlens.copyShaToClipboard",
  430. "title": "Copy Commit Sha to Clipboard",
  431. "category": "GitLens"
  432. },
  433. {
  434. "command": "gitlens.copyMessageToClipboard",
  435. "title": "Copy Commit Message to Clipboard",
  436. "category": "GitLens"
  437. },
  438. {
  439. "command": "gitlens.closeUnchangedFiles",
  440. "title": "Close Unchanged Files",
  441. "category": "GitLens"
  442. },
  443. {
  444. "command": "gitlens.openChangedFiles",
  445. "title": "Open Changed Files",
  446. "category": "GitLens"
  447. }
  448. ],
  449. "menus": {
  450. "commandPalette": [
  451. {
  452. "command": "gitlens.diffDirectory",
  453. "when": "gitlens:enabled"
  454. },
  455. {
  456. "command": "gitlens.diffWithNext",
  457. "when": "gitlens:enabled"
  458. },
  459. {
  460. "command": "gitlens.diffWithPrevious",
  461. "when": "gitlens:enabled"
  462. },
  463. {
  464. "command": "gitlens.diffLineWithPrevious",
  465. "when": "gitlens:enabled && gitlens:isBlameable"
  466. },
  467. {
  468. "command": "gitlens.diffWithWorking",
  469. "when": "gitlens:enabled"
  470. },
  471. {
  472. "command": "gitlens.diffLineWithWorking",
  473. "when": "gitlens:enabled && gitlens:isBlameable"
  474. },
  475. {
  476. "command": "gitlens.showBlame",
  477. "when": "gitlens:enabled && gitlens:isBlameable"
  478. },
  479. {
  480. "command": "gitlens.toggleBlame",
  481. "when": "gitlens:enabled && gitlens:isBlameable"
  482. },
  483. {
  484. "command": "gitlens.toggleCodeLens",
  485. "when": "gitlens:enabled && gitlens:canToggleCodeLens"
  486. },
  487. {
  488. "command": "gitlens.showBlameHistory",
  489. "when": "gitlens:enabled && gitlens:isBlameable"
  490. },
  491. {
  492. "command": "gitlens.showFileHistory",
  493. "when": "gitlens:enabled"
  494. },
  495. {
  496. "command": "gitlens.showQuickCommitDetails",
  497. "when": "gitlens:enabled && gitlens:isBlameable"
  498. },
  499. {
  500. "command": "gitlens.showQuickCommitFileDetails",
  501. "when": "gitlens:enabled && gitlens:isBlameable"
  502. },
  503. {
  504. "command": "gitlens.showQuickFileHistory",
  505. "when": "gitlens:enabled"
  506. },
  507. {
  508. "command": "gitlens.showQuickRepoHistory",
  509. "when": "gitlens:enabled"
  510. },
  511. {
  512. "command": "gitlens.showQuickRepoStatus",
  513. "when": "gitlens:enabled"
  514. },
  515. {
  516. "command": "gitlens.copyShaToClipboard",
  517. "when": "gitlens:enabled && gitlens:isBlameable"
  518. },
  519. {
  520. "command": "gitlens.copyMessageToClipboard",
  521. "when": "gitlens:enabled && gitlens:isBlameable"
  522. },
  523. {
  524. "command": "gitlens.closeUnchangedFiles",
  525. "when": "gitlens:enabled"
  526. },
  527. {
  528. "command": "gitlens.openChangedFiles",
  529. "when": "gitlens:enabled"
  530. }
  531. ],
  532. "explorer/context": [
  533. {
  534. "command": "gitlens.showQuickFileHistory",
  535. "when": "gitlens:enabled",
  536. "group": "gitlens"
  537. },
  538. {
  539. "command": "gitlens.diffWithPrevious",
  540. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  541. "group": "gitlens_diff"
  542. },
  543. {
  544. "command": "gitlens.diffWithWorking",
  545. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  546. "group": "gitlens_diff"
  547. }
  548. ],
  549. "editor/title": [
  550. {
  551. "command": "gitlens.toggleBlame",
  552. "when": "gitlens:enabled && gitlens:isBlameable",
  553. "group": "navigation@100"
  554. },
  555. {
  556. "command": "gitlens.showQuickFileHistory",
  557. "when": "editorFocus && gitlens:enabled",
  558. "group": "gitlens"
  559. },
  560. {
  561. "command": "gitlens.showQuickRepoHistory",
  562. "when": "!editorFocus && gitlens:enabled",
  563. "group": "gitlens"
  564. },
  565. {
  566. "command": "gitlens.showQuickRepoStatus",
  567. "when": "gitlens:enabled",
  568. "group": "gitlens"
  569. },
  570. {
  571. "command": "gitlens.diffWithPrevious",
  572. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  573. "group": "gitlens_diff"
  574. },
  575. {
  576. "command": "gitlens.diffWithWorking",
  577. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  578. "group": "gitlens_diff"
  579. }
  580. ],
  581. "editor/title/context": [
  582. {
  583. "command": "gitlens.toggleBlame",
  584. "when": "gitlens:enabled && gitlens:isBlameable",
  585. "group": "gitlens@1"
  586. },
  587. {
  588. "command": "gitlens.showQuickFileHistory",
  589. "when": "gitlens:enabled",
  590. "group": "gitlens@2"
  591. }
  592. ],
  593. "editor/context": [
  594. {
  595. "command": "gitlens.diffLineWithPrevious",
  596. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  597. "group": "1_gitlens@1"
  598. },
  599. {
  600. "command": "gitlens.diffLineWithWorking",
  601. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  602. "group": "1_gitlens@2"
  603. },
  604. {
  605. "command": "gitlens.showQuickCommitFileDetails",
  606. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  607. "group": "1_gitlens@3"
  608. },
  609. {
  610. "command": "gitlens.diffWithPrevious",
  611. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  612. "group": "1_gitlens-file@1"
  613. },
  614. {
  615. "command": "gitlens.diffWithWorking",
  616. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  617. "group": "1_gitlens-file@2"
  618. },
  619. {
  620. "command": "gitlens.toggleBlame",
  621. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  622. "group": "2_gitlens@1"
  623. },
  624. {
  625. "command": "gitlens.showQuickFileHistory",
  626. "alt": "gitlens.showFileHistory",
  627. "when": "gitlens:enabled",
  628. "group": "2_gitlens@2"
  629. },
  630. {
  631. "command": "gitlens.copyShaToClipboard",
  632. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  633. "group": "9_gitlens@1"
  634. },
  635. {
  636. "command": "gitlens.copyMessageToClipboard",
  637. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  638. "group": "9_gitlens@2"
  639. }
  640. ]
  641. },
  642. "keybindings": [
  643. {
  644. "command": "gitlens.key.left",
  645. "key": "alt+left",
  646. "when": "gitlens:key:left"
  647. },
  648. {
  649. "command": "gitlens.key.right",
  650. "key": "alt+right",
  651. "when": "gitlens:key:right"
  652. },
  653. {
  654. "command": "gitlens.key.,",
  655. "key": "alt+,",
  656. "when": "gitlens:key:,"
  657. },
  658. {
  659. "command": "gitlens.key..",
  660. "key": "alt+.",
  661. "when": "gitlens:key:."
  662. },
  663. {
  664. "command": "gitlens.toggleBlame",
  665. "key": "alt+b",
  666. "mac": "alt+b",
  667. "when": "editorTextFocus && gitlens:enabled"
  668. },
  669. {
  670. "command": "gitlens.toggleCodeLens",
  671. "key": "alt+shift+b",
  672. "mac": "alt+shift+b",
  673. "when": "editorTextFocus && gitlens:enabled && gitlens:canToggleCodeLens"
  674. },
  675. {
  676. "command": "gitlens.showQuickFileHistory",
  677. "key": "alt+h",
  678. "mac": "alt+h",
  679. "when": "gitlens:enabled"
  680. },
  681. {
  682. "command": "gitlens.showQuickRepoHistory",
  683. "key": "shift+alt+h",
  684. "mac": "shift+alt+h",
  685. "when": "gitlens:enabled"
  686. },
  687. {
  688. "command": "gitlens.showQuickRepoStatus",
  689. "key": "alt+s",
  690. "mac": "alt+s",
  691. "when": "gitlens:enabled"
  692. },
  693. {
  694. "command": "gitlens.showQuickCommitFileDetails",
  695. "key": "alt+c",
  696. "mac": "alt+c",
  697. "when": "editorTextFocus && gitlens:enabled"
  698. },
  699. {
  700. "command": "gitlens.diffWithNext",
  701. "key": "alt+.",
  702. "mac": "alt+.",
  703. "when": "editorTextFocus && gitlens:enabled"
  704. },
  705. {
  706. "command": "gitlens.diffLineWithPrevious",
  707. "key": "shift+alt+,",
  708. "mac": "shift+alt+,",
  709. "when": "editorTextFocus && gitlens:enabled"
  710. },
  711. {
  712. "command": "gitlens.diffWithPrevious",
  713. "key": "alt+,",
  714. "mac": "alt+,",
  715. "when": "editorTextFocus && gitlens:enabled"
  716. },
  717. {
  718. "command": "gitlens.diffLineWithWorking",
  719. "key": "alt+w",
  720. "mac": "alt+w",
  721. "when": "editorTextFocus && gitlens:enabled"
  722. },
  723. {
  724. "command": "gitlens.diffWithWorking",
  725. "key": "shift+alt+w",
  726. "mac": "shift+alt+w",
  727. "when": "editorTextFocus && gitlens:enabled"
  728. }
  729. ]
  730. },
  731. "activationEvents": [
  732. "*"
  733. ],
  734. "scripts": {
  735. "compile": "tsc -watch -p ./",
  736. "lint": "tslint --project tslint.json",
  737. "pack": "git clean -xdf && npm install && vsce package",
  738. "postinstall": "node ./node_modules/vscode/bin/install",
  739. "pub": "git clean -xdf --exclude=node_modules/ && npm install && vsce publish",
  740. "vscode:prepublish": "tsc -p ./"
  741. },
  742. "dependencies": {
  743. "copy-paste": "^1.3.0",
  744. "ignore": "^3.2.4",
  745. "lodash.debounce": "^4.0.8",
  746. "lodash.escaperegexp": "^4.1.2",
  747. "lodash.isequal": "^4.5.0",
  748. "lodash.once": "^4.1.1",
  749. "moment": "^2.17.1",
  750. "spawn-rx": "^2.0.10",
  751. "tmp": "^0.0.31"
  752. },
  753. "devDependencies": {
  754. "@types/copy-paste": "^1.1.30",
  755. "@types/mocha": "^2.2.40",
  756. "@types/node": "^7.0.8",
  757. "@types/tmp": "^0.0.32",
  758. "mocha": "^3.2.0",
  759. "tslint": "^4.5.1",
  760. "typescript": "^2.2.1",
  761. "vscode": "^1.1.0"
  762. }
  763. }