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.

775 lines
34 KiB

8 years ago
8 years ago
  1. {
  2. "name": "gitlens",
  3. "version": "2.12.2",
  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": "css",
  157. "location": "document"
  158. },
  159. {
  160. "language": "html",
  161. "location": "document"
  162. },
  163. {
  164. "language": "json",
  165. "location": "document"
  166. },
  167. {
  168. "language": "less",
  169. "location": "document"
  170. },
  171. {
  172. "language": "scss",
  173. "location": "document"
  174. },
  175. {
  176. "language": "vue",
  177. "location": "document"
  178. }
  179. ],
  180. "items": {
  181. "type": "object",
  182. "required": [
  183. "language",
  184. "location"
  185. ],
  186. "properties": {
  187. "language": {
  188. "type": "string",
  189. "description": "Specifies the language to which this CodeLens override applies"
  190. },
  191. "location": {
  192. "type": "string",
  193. "default": "document+containers",
  194. "enum": [
  195. "all",
  196. "document+containers",
  197. "document",
  198. "custom",
  199. "none"
  200. ],
  201. "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`"
  202. },
  203. "customSymbols": {
  204. "type": "string",
  205. "description": "Specifies the set of document symbols to render active document CodeLens on. Must be a member of `SymbolKind`"
  206. }
  207. }
  208. },
  209. "uniqueItems": true,
  210. "enum": [
  211. "all",
  212. "document+containers",
  213. "document",
  214. "custom"
  215. ],
  216. "description": "Specifies where CodeLens will be rendered in the active document for the specified languages"
  217. },
  218. "gitlens.codeLens.recentChange.enabled": {
  219. "type": "boolean",
  220. "default": true,
  221. "description": "Specifies whether the recent change CodeLens is shown"
  222. },
  223. "gitlens.codeLens.recentChange.command": {
  224. "type": "string",
  225. "default": "gitlens.showQuickCommitFileDetails",
  226. "enum": [
  227. "gitlens.toggleBlame",
  228. "gitlens.showBlameHistory",
  229. "gitlens.showFileHistory",
  230. "gitlens.diffWithPrevious",
  231. "gitlens.showQuickCommitDetails",
  232. "gitlens.showQuickCommitFileDetails",
  233. "gitlens.showQuickFileHistory",
  234. "gitlens.showQuickRepoHistory"
  235. ],
  236. "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"
  237. },
  238. "gitlens.codeLens.authors.enabled": {
  239. "type": "boolean",
  240. "default": true,
  241. "description": "Specifies whether the authors CodeLens is shown"
  242. },
  243. "gitlens.codeLens.authors.command": {
  244. "type": "string",
  245. "default": "gitlens.toggleBlame",
  246. "enum": [
  247. "gitlens.toggleBlame",
  248. "gitlens.showBlameHistory",
  249. "gitlens.showFileHistory",
  250. "gitlens.diffWithPrevious",
  251. "gitlens.showQuickCommitDetails",
  252. "gitlens.showQuickCommitFileDetails",
  253. "gitlens.showQuickFileHistory",
  254. "gitlens.showQuickRepoHistory"
  255. ],
  256. "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"
  257. },
  258. "gitlens.menus.diff.enabled": {
  259. "type": "boolean",
  260. "default": true,
  261. "description": "Specifies whether diff commands will be added to the context menus"
  262. },
  263. "gitlens.statusBar.enabled": {
  264. "type": "boolean",
  265. "default": true,
  266. "description": "Specifies whether blame information is shown in the status bar"
  267. },
  268. "gitlens.statusBar.command": {
  269. "type": "string",
  270. "default": "gitlens.showQuickCommitDetails",
  271. "enum": [
  272. "gitlens.toggleBlame",
  273. "gitlens.showBlameHistory",
  274. "gitlens.showFileHistory",
  275. "gitlens.diffWithPrevious",
  276. "gitlens.toggleCodeLens",
  277. "gitlens.showQuickCommitDetails",
  278. "gitlens.showQuickCommitFileDetails",
  279. "gitlens.showQuickFileHistory",
  280. "gitlens.showQuickRepoHistory"
  281. ],
  282. "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"
  283. },
  284. "gitlens.statusBar.date": {
  285. "type": "string",
  286. "default": "relative",
  287. "enum": [
  288. "off",
  289. "relative",
  290. "absolute"
  291. ],
  292. "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`"
  293. },
  294. "gitlens.statusBar.dateFormat": {
  295. "type": "string",
  296. "default": "",
  297. "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"
  298. },
  299. "gitlens.advanced.caching.enabled": {
  300. "type": "boolean",
  301. "default": true,
  302. "description": "Specifies whether git blame output will be cached"
  303. },
  304. "gitlens.advanced.caching.statusBar.maxLines": {
  305. "type": "number",
  306. "default": 0,
  307. "description": "Specifies whether status bar git blame output will be cached for larger documents"
  308. },
  309. "gitlens.advanced.debug": {
  310. "type": "boolean",
  311. "default": false,
  312. "description": "Specifies debug mode"
  313. },
  314. "gitlens.advanced.codeLens.debug": {
  315. "type": "boolean",
  316. "default": false,
  317. "description": "Specifies whether or not to show debug information in CodeLens"
  318. },
  319. "gitlens.advanced.git": {
  320. "type": "string",
  321. "default": null,
  322. "description": "Specifies a git path to use"
  323. },
  324. "gitlens.advanced.gitignore.enabled": {
  325. "type": "boolean",
  326. "default": true,
  327. "description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
  328. },
  329. "gitlens.advanced.maxQuickHistory": {
  330. "type": "number",
  331. "default": 200,
  332. "description": "Specifies the maximum number of QuickPick history entries to show"
  333. },
  334. "gitlens.advanced.output.level": {
  335. "type": "string",
  336. "default": "silent",
  337. "enum": [
  338. "silent",
  339. "errors",
  340. "verbose"
  341. ],
  342. "description": "Specifies how much (if any) output will be sent to the GitLens output channel"
  343. },
  344. "gitlens.advanced.quickPick.closeOnFocusOut": {
  345. "type": "boolean",
  346. "default": true,
  347. "description": "Specifies whether or not to close the QuickPick menu when focus is lost"
  348. },
  349. "gitlens.advanced.toggleWhitespace.enabled": {
  350. "type": "boolean",
  351. "default": false,
  352. "description": "Specifies whether or not to toggle whitespace off then showing blame annotations (*may* be required by certain fonts/themes)"
  353. }
  354. }
  355. },
  356. "commands": [
  357. {
  358. "command": "gitlens.diffDirectory",
  359. "title": "Directory Compare",
  360. "category": "GitLens"
  361. },
  362. {
  363. "command": "gitlens.diffWithNext",
  364. "title": "Compare with Next Commit",
  365. "category": "GitLens"
  366. },
  367. {
  368. "command": "gitlens.diffWithPrevious",
  369. "title": "Compare with Previous Commit",
  370. "category": "GitLens"
  371. },
  372. {
  373. "command": "gitlens.diffLineWithPrevious",
  374. "title": "Compare Line with Previous Commit",
  375. "category": "GitLens"
  376. },
  377. {
  378. "command": "gitlens.diffWithWorking",
  379. "title": "Compare with Working Tree",
  380. "category": "GitLens"
  381. },
  382. {
  383. "command": "gitlens.diffLineWithWorking",
  384. "title": "Compare Line with Working Tree",
  385. "category": "GitLens"
  386. },
  387. {
  388. "command": "gitlens.showBlame",
  389. "title": "Show Blame Annotations",
  390. "category": "GitLens"
  391. },
  392. {
  393. "command": "gitlens.toggleBlame",
  394. "title": "Toggle Blame Annotations",
  395. "category": "GitLens",
  396. "icon": {
  397. "dark": "images/git-icon-dark.svg",
  398. "light": "images/git-icon-light.svg"
  399. }
  400. },
  401. {
  402. "command": "gitlens.toggleCodeLens",
  403. "title": "Toggle Git CodeLens",
  404. "category": "GitLens"
  405. },
  406. {
  407. "command": "gitlens.showBlameHistory",
  408. "title": "Open Blame History Explorer",
  409. "category": "GitLens"
  410. },
  411. {
  412. "command": "gitlens.showFileHistory",
  413. "title": "Open File History Explorer",
  414. "category": "GitLens"
  415. },
  416. {
  417. "command": "gitlens.showQuickCommitDetails",
  418. "title": "Show Commit Details",
  419. "category": "GitLens"
  420. },
  421. {
  422. "command": "gitlens.showQuickCommitFileDetails",
  423. "title": "Show Line Commit Details",
  424. "category": "GitLens"
  425. },
  426. {
  427. "command": "gitlens.showQuickFileHistory",
  428. "title": "Show File History",
  429. "category": "GitLens"
  430. },
  431. {
  432. "command": "gitlens.showQuickRepoHistory",
  433. "title": "Show Repository History",
  434. "category": "GitLens"
  435. },
  436. {
  437. "command": "gitlens.showQuickRepoStatus",
  438. "title": "Show Repository Status",
  439. "category": "GitLens"
  440. },
  441. {
  442. "command": "gitlens.copyShaToClipboard",
  443. "title": "Copy Commit Sha to Clipboard",
  444. "category": "GitLens"
  445. },
  446. {
  447. "command": "gitlens.copyMessageToClipboard",
  448. "title": "Copy Commit Message to Clipboard",
  449. "category": "GitLens"
  450. },
  451. {
  452. "command": "gitlens.closeUnchangedFiles",
  453. "title": "Close Unchanged Files",
  454. "category": "GitLens"
  455. },
  456. {
  457. "command": "gitlens.openChangedFiles",
  458. "title": "Open Changed Files",
  459. "category": "GitLens"
  460. }
  461. ],
  462. "menus": {
  463. "commandPalette": [
  464. {
  465. "command": "gitlens.diffDirectory",
  466. "when": "gitlens:enabled"
  467. },
  468. {
  469. "command": "gitlens.diffWithNext",
  470. "when": "gitlens:enabled"
  471. },
  472. {
  473. "command": "gitlens.diffWithPrevious",
  474. "when": "gitlens:enabled"
  475. },
  476. {
  477. "command": "gitlens.diffLineWithPrevious",
  478. "when": "gitlens:enabled && gitlens:isBlameable"
  479. },
  480. {
  481. "command": "gitlens.diffWithWorking",
  482. "when": "gitlens:enabled"
  483. },
  484. {
  485. "command": "gitlens.diffLineWithWorking",
  486. "when": "gitlens:enabled && gitlens:isBlameable"
  487. },
  488. {
  489. "command": "gitlens.showBlame",
  490. "when": "gitlens:enabled && gitlens:isBlameable"
  491. },
  492. {
  493. "command": "gitlens.toggleBlame",
  494. "when": "gitlens:enabled && gitlens:isBlameable"
  495. },
  496. {
  497. "command": "gitlens.toggleCodeLens",
  498. "when": "gitlens:enabled && gitlens:canToggleCodeLens"
  499. },
  500. {
  501. "command": "gitlens.showBlameHistory",
  502. "when": "gitlens:enabled && gitlens:isBlameable"
  503. },
  504. {
  505. "command": "gitlens.showFileHistory",
  506. "when": "gitlens:enabled"
  507. },
  508. {
  509. "command": "gitlens.showQuickCommitDetails",
  510. "when": "gitlens:enabled && gitlens:isBlameable"
  511. },
  512. {
  513. "command": "gitlens.showQuickCommitFileDetails",
  514. "when": "gitlens:enabled && gitlens:isBlameable"
  515. },
  516. {
  517. "command": "gitlens.showQuickFileHistory",
  518. "when": "gitlens:enabled"
  519. },
  520. {
  521. "command": "gitlens.showQuickRepoHistory",
  522. "when": "gitlens:enabled"
  523. },
  524. {
  525. "command": "gitlens.showQuickRepoStatus",
  526. "when": "gitlens:enabled"
  527. },
  528. {
  529. "command": "gitlens.copyShaToClipboard",
  530. "when": "gitlens:enabled && gitlens:isBlameable"
  531. },
  532. {
  533. "command": "gitlens.copyMessageToClipboard",
  534. "when": "gitlens:enabled && gitlens:isBlameable"
  535. },
  536. {
  537. "command": "gitlens.closeUnchangedFiles",
  538. "when": "gitlens:enabled"
  539. },
  540. {
  541. "command": "gitlens.openChangedFiles",
  542. "when": "gitlens:enabled"
  543. }
  544. ],
  545. "explorer/context": [
  546. {
  547. "command": "gitlens.showQuickFileHistory",
  548. "when": "gitlens:enabled",
  549. "group": "gitlens"
  550. },
  551. {
  552. "command": "gitlens.diffWithPrevious",
  553. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  554. "group": "gitlens_diff"
  555. },
  556. {
  557. "command": "gitlens.diffWithWorking",
  558. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  559. "group": "gitlens_diff"
  560. }
  561. ],
  562. "editor/title": [
  563. {
  564. "command": "gitlens.toggleBlame",
  565. "when": "gitlens:enabled && gitlens:isBlameable",
  566. "group": "navigation@100"
  567. },
  568. {
  569. "command": "gitlens.showQuickFileHistory",
  570. "when": "editorFocus && gitlens:enabled",
  571. "group": "gitlens"
  572. },
  573. {
  574. "command": "gitlens.showQuickRepoHistory",
  575. "when": "!editorFocus && gitlens:enabled",
  576. "group": "gitlens"
  577. },
  578. {
  579. "command": "gitlens.showQuickRepoStatus",
  580. "when": "gitlens:enabled",
  581. "group": "gitlens"
  582. },
  583. {
  584. "command": "gitlens.diffWithPrevious",
  585. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  586. "group": "gitlens_diff"
  587. },
  588. {
  589. "command": "gitlens.diffWithWorking",
  590. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  591. "group": "gitlens_diff"
  592. }
  593. ],
  594. "editor/title/context": [
  595. {
  596. "command": "gitlens.toggleBlame",
  597. "when": "gitlens:enabled && gitlens:isBlameable",
  598. "group": "gitlens@1"
  599. },
  600. {
  601. "command": "gitlens.showQuickFileHistory",
  602. "when": "gitlens:enabled",
  603. "group": "gitlens@2"
  604. }
  605. ],
  606. "editor/context": [
  607. {
  608. "command": "gitlens.diffLineWithPrevious",
  609. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  610. "group": "1_gitlens@1"
  611. },
  612. {
  613. "command": "gitlens.diffLineWithWorking",
  614. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  615. "group": "1_gitlens@2"
  616. },
  617. {
  618. "command": "gitlens.showQuickCommitFileDetails",
  619. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  620. "group": "1_gitlens@3"
  621. },
  622. {
  623. "command": "gitlens.diffWithPrevious",
  624. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  625. "group": "1_gitlens-file@1"
  626. },
  627. {
  628. "command": "gitlens.diffWithWorking",
  629. "when": "editorTextFocus && gitlens:enabled && config.gitlens.menus.diff.enabled",
  630. "group": "1_gitlens-file@2"
  631. },
  632. {
  633. "command": "gitlens.toggleBlame",
  634. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  635. "group": "2_gitlens@1"
  636. },
  637. {
  638. "command": "gitlens.showQuickFileHistory",
  639. "alt": "gitlens.showFileHistory",
  640. "when": "gitlens:enabled",
  641. "group": "2_gitlens@2"
  642. },
  643. {
  644. "command": "gitlens.copyShaToClipboard",
  645. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  646. "group": "9_gitlens@1"
  647. },
  648. {
  649. "command": "gitlens.copyMessageToClipboard",
  650. "when": "editorTextFocus && gitlens:enabled && gitlens:isBlameable",
  651. "group": "9_gitlens@2"
  652. }
  653. ]
  654. },
  655. "keybindings": [
  656. {
  657. "command": "gitlens.key.left",
  658. "key": "alt+left",
  659. "when": "gitlens:key:left"
  660. },
  661. {
  662. "command": "gitlens.key.right",
  663. "key": "alt+right",
  664. "when": "gitlens:key:right"
  665. },
  666. {
  667. "command": "gitlens.key.,",
  668. "key": "alt+,",
  669. "when": "gitlens:key:,"
  670. },
  671. {
  672. "command": "gitlens.key..",
  673. "key": "alt+.",
  674. "when": "gitlens:key:."
  675. },
  676. {
  677. "command": "gitlens.toggleBlame",
  678. "key": "alt+b",
  679. "mac": "alt+b",
  680. "when": "editorTextFocus && gitlens:enabled"
  681. },
  682. {
  683. "command": "gitlens.toggleCodeLens",
  684. "key": "alt+shift+b",
  685. "mac": "alt+shift+b",
  686. "when": "editorTextFocus && gitlens:enabled && gitlens:canToggleCodeLens"
  687. },
  688. {
  689. "command": "gitlens.showQuickFileHistory",
  690. "key": "alt+h",
  691. "mac": "alt+h",
  692. "when": "gitlens:enabled"
  693. },
  694. {
  695. "command": "gitlens.showQuickRepoHistory",
  696. "key": "shift+alt+h",
  697. "mac": "shift+alt+h",
  698. "when": "gitlens:enabled"
  699. },
  700. {
  701. "command": "gitlens.showQuickRepoStatus",
  702. "key": "alt+s",
  703. "mac": "alt+s",
  704. "when": "gitlens:enabled"
  705. },
  706. {
  707. "command": "gitlens.showQuickCommitFileDetails",
  708. "key": "alt+c",
  709. "mac": "alt+c",
  710. "when": "editorTextFocus && gitlens:enabled"
  711. },
  712. {
  713. "command": "gitlens.diffWithNext",
  714. "key": "alt+.",
  715. "mac": "alt+.",
  716. "when": "editorTextFocus && gitlens:enabled"
  717. },
  718. {
  719. "command": "gitlens.diffLineWithPrevious",
  720. "key": "shift+alt+,",
  721. "mac": "shift+alt+,",
  722. "when": "editorTextFocus && gitlens:enabled"
  723. },
  724. {
  725. "command": "gitlens.diffWithPrevious",
  726. "key": "alt+,",
  727. "mac": "alt+,",
  728. "when": "editorTextFocus && gitlens:enabled"
  729. },
  730. {
  731. "command": "gitlens.diffLineWithWorking",
  732. "key": "alt+w",
  733. "mac": "alt+w",
  734. "when": "editorTextFocus && gitlens:enabled"
  735. },
  736. {
  737. "command": "gitlens.diffWithWorking",
  738. "key": "shift+alt+w",
  739. "mac": "shift+alt+w",
  740. "when": "editorTextFocus && gitlens:enabled"
  741. }
  742. ]
  743. },
  744. "activationEvents": [
  745. "*"
  746. ],
  747. "scripts": {
  748. "compile": "tsc -watch -p ./",
  749. "lint": "tslint --project tslint.json",
  750. "pack": "git clean -xdf && npm install && vsce package",
  751. "postinstall": "node ./node_modules/vscode/bin/install",
  752. "pub": "git clean -xdf --exclude=node_modules/ && npm install && vsce publish",
  753. "vscode:prepublish": "tsc -p ./"
  754. },
  755. "dependencies": {
  756. "copy-paste": "^1.3.0",
  757. "ignore": "^3.2.5",
  758. "lodash.debounce": "^4.0.8",
  759. "lodash.escaperegexp": "^4.1.2",
  760. "lodash.isequal": "^4.5.0",
  761. "lodash.once": "^4.1.1",
  762. "moment": "^2.17.1",
  763. "spawn-rx": "^2.0.10",
  764. "tmp": "^0.0.31"
  765. },
  766. "devDependencies": {
  767. "@types/copy-paste": "^1.1.30",
  768. "@types/mocha": "^2.2.40",
  769. "@types/node": "^7.0.8",
  770. "@types/tmp": "^0.0.32",
  771. "mocha": "^3.2.0",
  772. "tslint": "^4.5.1",
  773. "typescript": "^2.2.1",
  774. "vscode": "^1.1.0"
  775. }
  776. }