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.

68 lines
2.9 KiB

  1. import { Command } from 'vscode';
  2. export function command<T extends unknown[]>(command: Omit<Command, 'arguments'> & { arguments: [...T] }): Command {
  3. return command;
  4. }
  5. export * from './commands/addAuthors';
  6. export * from './commands/browseRepoAtRevision';
  7. export * from './commands/closeUnchangedFiles';
  8. export * from './commands/closeView';
  9. export * from './commands/common';
  10. export * from './commands/compareWith';
  11. export * from './commands/copyCurrentBranch';
  12. export * from './commands/copyMessageToClipboard';
  13. export * from './commands/copyShaToClipboard';
  14. export * from './commands/createPullRequestOnRemote';
  15. export * from './commands/openDirectoryCompare';
  16. export * from './commands/diffLineWithPrevious';
  17. export * from './commands/diffLineWithWorking';
  18. export * from './commands/diffWith';
  19. export * from './commands/diffWithNext';
  20. export * from './commands/diffWithPrevious';
  21. export * from './commands/diffWithRevision';
  22. export * from './commands/diffWithRevisionFrom';
  23. export * from './commands/diffWithWorking';
  24. export * from './commands/externalDiff';
  25. export * from './commands/gitCommands';
  26. export * from './commands/inviteToLiveShare';
  27. export * from './commands/logging';
  28. export * from './commands/openAssociatedPullRequestOnRemote';
  29. export * from './commands/openBranchesOnRemote';
  30. export * from './commands/openBranchOnRemote';
  31. export * from './commands/openChangedFiles';
  32. export * from './commands/openCommitOnRemote';
  33. export * from './commands/openComparisonOnRemote';
  34. export * from './commands/openFileFromRemote';
  35. export * from './commands/openFileOnRemote';
  36. export * from './commands/openFileAtRevision';
  37. export * from './commands/openFileAtRevisionFrom';
  38. export * from './commands/openOnRemote';
  39. export * from './commands/openIssueOnRemote';
  40. export * from './commands/openPullRequestOnRemote';
  41. export * from './commands/openRepoOnRemote';
  42. export * from './commands/openRevisionFile';
  43. export * from './commands/openWorkingFile';
  44. export * from './commands/rebaseEditor';
  45. export * from './commands/refreshHover';
  46. export * from './commands/remoteProviders';
  47. export * from './commands/repositories';
  48. export * from './commands/resetAvatarCache';
  49. export * from './commands/resetSuppressedWarnings';
  50. export * from './commands/setViewsLayout';
  51. export * from './commands/searchCommits';
  52. export * from './commands/showCommitsInView';
  53. export * from './commands/showLastQuickPick';
  54. export * from './commands/showQuickBranchHistory';
  55. export * from './commands/showQuickCommit';
  56. export * from './commands/showQuickCommitFile';
  57. export * from './commands/showQuickFileHistory';
  58. export * from './commands/showQuickRepoStatus';
  59. export * from './commands/showQuickStashList';
  60. export * from './commands/showView';
  61. export * from './commands/stashApply';
  62. export * from './commands/stashSave';
  63. export * from './commands/switchMode';
  64. export * from './commands/toggleCodeLens';
  65. export * from './commands/toggleFileAnnotations';
  66. export * from './commands/toggleLineBlame';