選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

900 行
39 KiB

8年前
  1. {
  2. "name": "gitlens",
  3. "version": "3.3.1",
  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 id (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": null,
  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 committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.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 committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.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 committed file with the previous commit. `gitlens.showQuickCommitDetails` - shows a commit details quick pick. `gitlens.showQuickCommitFileDetails` - shows a commit file details quick pick. `gitlens.showQuickFileHistory` - shows a file history quick pick. `gitlens.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": null,
  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. "gitlens.insiders": {
  355. "type": "boolean",
  356. "default": false,
  357. "description": "Specifies whether or not to enable new experimental features (expect there to be issues)"
  358. }
  359. }
  360. },
  361. "commands": [
  362. {
  363. "command": "gitlens.diffDirectory",
  364. "title": "Directory Compare",
  365. "category": "GitLens"
  366. },
  367. {
  368. "command": "gitlens.diffWithBranch",
  369. "title": "Compare with...",
  370. "category": "GitLens"
  371. },
  372. {
  373. "command": "gitlens.diffWithNext",
  374. "title": "Compare with Next Commit",
  375. "category": "GitLens"
  376. },
  377. {
  378. "command": "gitlens.diffWithPrevious",
  379. "title": "Compare with Previous Commit",
  380. "category": "GitLens"
  381. },
  382. {
  383. "command": "gitlens.diffLineWithPrevious",
  384. "title": "Compare Line with Previous Commit",
  385. "category": "GitLens"
  386. },
  387. {
  388. "command": "gitlens.diffWithWorking",
  389. "title": "Compare with Working Tree",
  390. "category": "GitLens"
  391. },
  392. {
  393. "command": "gitlens.diffLineWithWorking",
  394. "title": "Compare Line with Working Tree",
  395. "category": "GitLens"
  396. },
  397. {
  398. "command": "gitlens.showBlame",
  399. "title": "Show Blame Annotations",
  400. "category": "GitLens"
  401. },
  402. {
  403. "command": "gitlens.toggleBlame",
  404. "title": "Toggle Blame Annotations",
  405. "category": "GitLens",
  406. "icon": {
  407. "dark": "images/git-icon-dark.svg",
  408. "light": "images/git-icon-light.svg"
  409. }
  410. },
  411. {
  412. "command": "gitlens.toggleCodeLens",
  413. "title": "Toggle Git CodeLens",
  414. "category": "GitLens"
  415. },
  416. {
  417. "command": "gitlens.showBlameHistory",
  418. "title": "Open Blame History Explorer",
  419. "category": "GitLens"
  420. },
  421. {
  422. "command": "gitlens.showCommitSearch",
  423. "title": "Search Commits",
  424. "category": "GitLens"
  425. },
  426. {
  427. "command": "gitlens.showFileHistory",
  428. "title": "Open File History Explorer",
  429. "category": "GitLens"
  430. },
  431. {
  432. "command": "gitlens.showLastQuickPick",
  433. "title": "Show Last Opened Quick Pick",
  434. "category": "GitLens"
  435. },
  436. {
  437. "command": "gitlens.showQuickCommitDetails",
  438. "title": "Show Commit Details",
  439. "category": "GitLens"
  440. },
  441. {
  442. "command": "gitlens.showQuickCommitFileDetails",
  443. "title": "Show Line Commit Details",
  444. "category": "GitLens"
  445. },
  446. {
  447. "command": "gitlens.showQuickFileHistory",
  448. "title": "Show File History",
  449. "category": "GitLens"
  450. },
  451. {
  452. "command": "gitlens.showQuickBranchHistory",
  453. "title": "Show Branch History",
  454. "category": "GitLens"
  455. },
  456. {
  457. "command": "gitlens.showQuickRepoHistory",
  458. "title": "Show Current Branch History",
  459. "category": "GitLens"
  460. },
  461. {
  462. "command": "gitlens.showQuickRepoStatus",
  463. "title": "Show Repository Status",
  464. "category": "GitLens"
  465. },
  466. {
  467. "command": "gitlens.showQuickStashList",
  468. "title": "Show Stashed Changes",
  469. "category": "GitLens"
  470. },
  471. {
  472. "command": "gitlens.copyShaToClipboard",
  473. "title": "Copy Commit ID to Clipboard",
  474. "category": "GitLens"
  475. },
  476. {
  477. "command": "gitlens.copyMessageToClipboard",
  478. "title": "Copy Commit Message to Clipboard",
  479. "category": "GitLens"
  480. },
  481. {
  482. "command": "gitlens.closeUnchangedFiles",
  483. "title": "Close Unchanged Files",
  484. "category": "GitLens"
  485. },
  486. {
  487. "command": "gitlens.openChangedFiles",
  488. "title": "Open Changed Files",
  489. "category": "GitLens"
  490. },
  491. {
  492. "command": "gitlens.openCommitInRemote",
  493. "title": "Open Line Commit in Remote",
  494. "category": "GitLens"
  495. },
  496. {
  497. "command": "gitlens.openFileInRemote",
  498. "title": "Open File in Remote",
  499. "category": "GitLens"
  500. },
  501. {
  502. "command": "gitlens.stashApply",
  503. "title": "Apply Stashed Changes",
  504. "category": "GitLens"
  505. },
  506. {
  507. "command": "gitlens.stashSave",
  508. "title": "Stash Changes",
  509. "category": "GitLens"
  510. },
  511. {
  512. "command": "gitlens.settings",
  513. "title": "Settings",
  514. "category": "GitLens"
  515. }
  516. ],
  517. "menus": {
  518. "commandPalette": [
  519. {
  520. "command": "gitlens.diffDirectory",
  521. "when": "gitlens:enabled"
  522. },
  523. {
  524. "command": "gitlens.diffWithBranch",
  525. "when": "editorTextFocus && gitlens:isTracked"
  526. },
  527. {
  528. "command": "gitlens.diffWithNext",
  529. "when": "editorTextFocus && gitlens:isTracked"
  530. },
  531. {
  532. "command": "gitlens.diffWithPrevious",
  533. "when": "editorTextFocus && gitlens:isTracked"
  534. },
  535. {
  536. "command": "gitlens.diffLineWithPrevious",
  537. "when": "editorTextFocus && gitlens:isBlameable"
  538. },
  539. {
  540. "command": "gitlens.diffWithWorking",
  541. "when": "editorTextFocus && gitlens:isTracked"
  542. },
  543. {
  544. "command": "gitlens.diffLineWithWorking",
  545. "when": "editorTextFocus && gitlens:isBlameable"
  546. },
  547. {
  548. "command": "gitlens.showBlame",
  549. "when": "editorTextFocus && gitlens:isBlameable"
  550. },
  551. {
  552. "command": "gitlens.toggleBlame",
  553. "when": "editorTextFocus && gitlens:isBlameable"
  554. },
  555. {
  556. "command": "gitlens.toggleCodeLens",
  557. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  558. },
  559. {
  560. "command": "gitlens.showBlameHistory",
  561. "when": "editorTextFocus && gitlens:isBlameable"
  562. },
  563. {
  564. "command": "gitlens.showFileHistory",
  565. "when": "editorTextFocus && gitlens:isTracked"
  566. },
  567. {
  568. "command": "gitlens.showLastQuickPick",
  569. "when": "gitlens:enabled"
  570. },
  571. {
  572. "command": "gitlens.showQuickCommitDetails",
  573. "when": "gitlens:isBlameable"
  574. },
  575. {
  576. "command": "gitlens.showQuickCommitFileDetails",
  577. "when": "gitlens:isBlameable"
  578. },
  579. {
  580. "command": "gitlens.showQuickFileHistory",
  581. "when": "editorTextFocus && gitlens:isTracked"
  582. },
  583. {
  584. "command": "gitlens.showQuickBranchHistory",
  585. "when": "gitlens:enabled"
  586. },
  587. {
  588. "command": "gitlens.showQuickRepoHistory",
  589. "when": "gitlens:enabled"
  590. },
  591. {
  592. "command": "gitlens.showQuickRepoStatus",
  593. "when": "gitlens:enabled"
  594. },
  595. {
  596. "command": "gitlens.showQuickStashList",
  597. "when": "gitlens:enabled"
  598. },
  599. {
  600. "command": "gitlens.copyShaToClipboard",
  601. "when": "editorTextFocus && gitlens:isBlameable"
  602. },
  603. {
  604. "command": "gitlens.copyMessageToClipboard",
  605. "when": "editorTextFocus && gitlens:isBlameable"
  606. },
  607. {
  608. "command": "gitlens.closeUnchangedFiles",
  609. "when": "gitlens:enabled"
  610. },
  611. {
  612. "command": "gitlens.openChangedFiles",
  613. "when": "gitlens:enabled"
  614. },
  615. {
  616. "command": "gitlens.openCommitInRemote",
  617. "when": "editorTextFocus && gitlens:isBlameable && gitlens:hasRemotes"
  618. },
  619. {
  620. "command": "gitlens.openFileInRemote",
  621. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes"
  622. },
  623. {
  624. "command": "gitlens.stashApply",
  625. "when": "gitlens:enabled && config.gitlens.insiders"
  626. },
  627. {
  628. "command": "gitlens.stashSave",
  629. "when": "gitlens:enabled && config.gitlens.insiders"
  630. }
  631. ],
  632. "explorer/context": [
  633. {
  634. "command": "gitlens.diffWithPrevious",
  635. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  636. "group": "1_gitlens@1"
  637. },
  638. {
  639. "command": "gitlens.diffWithWorking",
  640. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  641. "group": "1_gitlens@2"
  642. },
  643. {
  644. "command": "gitlens.showQuickFileHistory",
  645. "when": "gitlens:enabled",
  646. "group": "1_gitlens_1@1"
  647. },
  648. {
  649. "command": "gitlens.openFileInRemote",
  650. "when": "gitlens:enabled",
  651. "group": "1_gitlens_1@2"
  652. }
  653. ],
  654. "editor/title": [
  655. {
  656. "command": "gitlens.toggleBlame",
  657. "when": "gitlens:isBlameable",
  658. "group": "navigation@100"
  659. },
  660. {
  661. "command": "gitlens.diffWithPrevious",
  662. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.menus.diff.enabled",
  663. "group": "2_gitlens"
  664. },
  665. {
  666. "command": "gitlens.diffWithWorking",
  667. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.menus.diff.enabled",
  668. "group": "2_gitlens"
  669. },
  670. {
  671. "command": "gitlens.showQuickFileHistory",
  672. "when": "editorFocus && gitlens:isTracked",
  673. "group": "2_gitlens_1"
  674. },
  675. {
  676. "command": "gitlens.showQuickRepoHistory",
  677. "when": "!editorFocus && gitlens:enabled",
  678. "group": "2_gitlens_1"
  679. },
  680. {
  681. "command": "gitlens.showQuickRepoStatus",
  682. "when": "gitlens:enabled",
  683. "group": "2_gitlens_1"
  684. }
  685. ],
  686. "editor/title/context": [
  687. {
  688. "command": "gitlens.diffWithPrevious",
  689. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  690. "group": "1_gitlens@1"
  691. },
  692. {
  693. "command": "gitlens.diffWithWorking",
  694. "when": "gitlens:enabled && config.gitlens.menus.diff.enabled",
  695. "group": "1_gitlens@2"
  696. },
  697. {
  698. "command": "gitlens.showQuickFileHistory",
  699. "when": "gitlens:enabled",
  700. "group": "1_gitlens_1@1"
  701. },
  702. {
  703. "command": "gitlens.toggleBlame",
  704. "when": "gitlens:enabled",
  705. "group": "1_gitlens_1@2"
  706. },
  707. {
  708. "command": "gitlens.openFileInRemote",
  709. "when": "gitlens:enabled",
  710. "group": "1_gitlens_1@3"
  711. }
  712. ],
  713. "editor/context": [
  714. {
  715. "command": "gitlens.diffLineWithPrevious",
  716. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  717. "group": "1_gitlens@1"
  718. },
  719. {
  720. "command": "gitlens.diffLineWithWorking",
  721. "when": "editorTextFocus && gitlens:isBlameable && config.gitlens.menus.diff.enabled",
  722. "group": "1_gitlens@2"
  723. },
  724. {
  725. "command": "gitlens.showQuickCommitFileDetails",
  726. "when": "editorTextFocus && gitlens:isBlameable",
  727. "group": "1_gitlens@3"
  728. },
  729. {
  730. "command": "gitlens.diffWithPrevious",
  731. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.menus.diff.enabled",
  732. "group": "1_gitlens_1@1"
  733. },
  734. {
  735. "command": "gitlens.diffWithWorking",
  736. "when": "editorTextFocus && gitlens:isTracked && config.gitlens.menus.diff.enabled",
  737. "group": "1_gitlens_1@2"
  738. },
  739. {
  740. "command": "gitlens.showQuickFileHistory",
  741. "when": "gitlens:isTracked",
  742. "group": "2_gitlens@1"
  743. },
  744. {
  745. "command": "gitlens.toggleBlame",
  746. "when": "editorTextFocus && gitlens:isBlameable",
  747. "group": "2_gitlens@2"
  748. },
  749. {
  750. "command": "gitlens.openFileInRemote",
  751. "when": "editorTextFocus && gitlens:isTracked && gitlens:hasRemotes",
  752. "group": "2_gitlens@3"
  753. },
  754. {
  755. "command": "gitlens.copyShaToClipboard",
  756. "when": "editorTextFocus && gitlens:isBlameable",
  757. "group": "9_gitlens@1"
  758. },
  759. {
  760. "command": "gitlens.copyMessageToClipboard",
  761. "when": "editorTextFocus && gitlens:isBlameable",
  762. "group": "9_gitlens@2"
  763. }
  764. ]
  765. },
  766. "keybindings": [
  767. {
  768. "command": "gitlens.key.left",
  769. "key": "alt+left",
  770. "when": "gitlens:key:left"
  771. },
  772. {
  773. "command": "gitlens.key.right",
  774. "key": "alt+right",
  775. "when": "gitlens:key:right"
  776. },
  777. {
  778. "command": "gitlens.key.,",
  779. "key": "alt+,",
  780. "when": "gitlens:key:,"
  781. },
  782. {
  783. "command": "gitlens.key..",
  784. "key": "alt+.",
  785. "when": "gitlens:key:."
  786. },
  787. {
  788. "command": "gitlens.toggleBlame",
  789. "key": "alt+b",
  790. "mac": "alt+b",
  791. "when": "editorTextFocus && gitlens:isBlameable"
  792. },
  793. {
  794. "command": "gitlens.toggleCodeLens",
  795. "key": "alt+shift+b",
  796. "mac": "alt+shift+b",
  797. "when": "editorTextFocus && gitlens:isTracked && gitlens:canToggleCodeLens"
  798. },
  799. {
  800. "command": "gitlens.showLastQuickPick",
  801. "key": "alt+-",
  802. "mac": "alt+-",
  803. "when": "gitlens:enabled"
  804. },
  805. {
  806. "command": "gitlens.showCommitSearch",
  807. "key": "alt+f",
  808. "mac": "alt+f",
  809. "when": "gitlens:enabled"
  810. },
  811. {
  812. "command": "gitlens.showQuickFileHistory",
  813. "key": "alt+h",
  814. "mac": "alt+h",
  815. "when": "gitlens:enabled"
  816. },
  817. {
  818. "command": "gitlens.showQuickRepoHistory",
  819. "key": "shift+alt+h",
  820. "mac": "shift+alt+h",
  821. "when": "gitlens:enabled"
  822. },
  823. {
  824. "command": "gitlens.showQuickRepoStatus",
  825. "key": "alt+s",
  826. "mac": "alt+s",
  827. "when": "gitlens:enabled"
  828. },
  829. {
  830. "command": "gitlens.showQuickCommitFileDetails",
  831. "key": "alt+c",
  832. "mac": "alt+c",
  833. "when": "editorTextFocus && gitlens:enabled"
  834. },
  835. {
  836. "command": "gitlens.diffWithNext",
  837. "key": "alt+.",
  838. "mac": "alt+.",
  839. "when": "editorTextFocus && gitlens:isTracked"
  840. },
  841. {
  842. "command": "gitlens.diffLineWithPrevious",
  843. "key": "shift+alt+,",
  844. "mac": "shift+alt+,",
  845. "when": "editorTextFocus && gitlens:isBlameable"
  846. },
  847. {
  848. "command": "gitlens.diffWithPrevious",
  849. "key": "alt+,",
  850. "mac": "alt+,",
  851. "when": "editorTextFocus && gitlens:isTracked"
  852. },
  853. {
  854. "command": "gitlens.diffLineWithWorking",
  855. "key": "alt+w",
  856. "mac": "alt+w",
  857. "when": "editorTextFocus && gitlens:isBlameable"
  858. },
  859. {
  860. "command": "gitlens.diffWithWorking",
  861. "key": "shift+alt+w",
  862. "mac": "shift+alt+w",
  863. "when": "editorTextFocus && gitlens:isTracked"
  864. }
  865. ]
  866. },
  867. "activationEvents": [
  868. "*"
  869. ],
  870. "scripts": {
  871. "compile": "tsc -watch -p ./",
  872. "lint": "tslint --project tslint.json",
  873. "pack": "git clean -xdf && npm install && vsce package",
  874. "postinstall": "node ./node_modules/vscode/bin/install",
  875. "pub": "git clean -xdf --exclude=node_modules/ && npm install && vsce publish",
  876. "vscode:prepublish": "tsc -p ./"
  877. },
  878. "dependencies": {
  879. "applicationinsights": "^0.19.0",
  880. "copy-paste": "^1.3.0",
  881. "ignore": "^3.2.6",
  882. "lodash.debounce": "^4.0.8",
  883. "lodash.escaperegexp": "^4.1.2",
  884. "lodash.isequal": "^4.5.0",
  885. "lodash.once": "^4.1.1",
  886. "moment": "^2.18.1",
  887. "spawn-rx": "^2.0.10",
  888. "tmp": "^0.0.31"
  889. },
  890. "devDependencies": {
  891. "@types/applicationinsights": "^0.15.33",
  892. "@types/copy-paste": "^1.1.30",
  893. "@types/mocha": "^2.2.40",
  894. "@types/node": "^7.0.12",
  895. "@types/tmp": "^0.0.32",
  896. "mocha": "^3.2.0",
  897. "tslint": "^4.5.1",
  898. "typescript": "^2.2.2",
  899. "vscode": "^1.1.0"
  900. }
  901. }