@@ -499,35 +499,35 @@ export class GitCodeLensProvider implements CodeLensProvider, Disposable {
499499 }
500500
501501 switch ( lens . desiredCommand ) {
502- case 'gitlens.copyRemoteCommitUrl' satisfies CodeLensCommands :
502+ case 'gitlens.copyRemoteCommitUrl' :
503503 return applyCopyOrOpenCommitOnRemoteCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit , true ) ;
504- case 'gitlens.copyRemoteFileUrl' satisfies CodeLensCommands :
504+ case 'gitlens.copyRemoteFileUrl' :
505505 return applyCopyOrOpenFileOnRemoteCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit , true ) ;
506- case 'gitlens.diffWithPrevious' satisfies CodeLensCommands :
506+ case 'gitlens.diffWithPrevious' :
507507 return applyDiffWithPreviousCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
508- case 'gitlens.openCommitOnRemote' satisfies CodeLensCommands :
508+ case 'gitlens.openCommitOnRemote' :
509509 return applyCopyOrOpenCommitOnRemoteCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
510- case 'gitlens.openFileOnRemote' satisfies CodeLensCommands :
510+ case 'gitlens.openFileOnRemote' :
511511 return applyCopyOrOpenFileOnRemoteCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
512- case 'gitlens.revealCommitInView' satisfies CodeLensCommands :
512+ case 'gitlens.revealCommitInView' :
513513 return applyRevealCommitInViewCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
514- case 'gitlens.showCommitsInView' satisfies CodeLensCommands :
514+ case 'gitlens.showCommitsInView' :
515515 return applyShowCommitsInViewCommand < GitRecentChangeCodeLens > ( title , lens , blame , recentCommit ) ;
516- case 'gitlens.showQuickCommitDetails' satisfies CodeLensCommands :
516+ case 'gitlens.showQuickCommitDetails' :
517517 return applyShowQuickCommitDetailsCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
518- case 'gitlens.showQuickCommitFileDetails' satisfies CodeLensCommands :
518+ case 'gitlens.showQuickCommitFileDetails' :
519519 return applyShowQuickCommitFileDetailsCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
520- case 'gitlens.showQuickRepoHistory' satisfies CodeLensCommands :
520+ case 'gitlens.showQuickRepoHistory' :
521521 return applyShowQuickCurrentBranchHistoryCommand < GitRecentChangeCodeLens > ( title , lens ) ;
522- case 'gitlens.showQuickFileHistory' satisfies CodeLensCommands :
522+ case 'gitlens.showQuickFileHistory' :
523523 return applyShowQuickFileHistoryCommand < GitRecentChangeCodeLens > ( title , lens ) ;
524- case 'gitlens.toggleFileBlame' satisfies CodeLensCommands :
524+ case 'gitlens.toggleFileBlame' :
525525 return applyToggleFileBlameCommand < GitRecentChangeCodeLens > ( title , lens ) ;
526- case 'gitlens.toggleFileChanges' satisfies CodeLensCommands :
526+ case 'gitlens.toggleFileChanges' :
527527 return applyToggleFileChangesCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit ) ;
528- case 'gitlens.toggleFileChangesOnly' satisfies CodeLensCommands :
528+ case 'gitlens.toggleFileChangesOnly' :
529529 return applyToggleFileChangesCommand < GitRecentChangeCodeLens > ( title , lens , recentCommit , true ) ;
530- case 'gitlens.toggleFileHeatmap' satisfies CodeLensCommands :
530+ case 'gitlens.toggleFileHeatmap' :
531531 return applyToggleFileHeatmapCommand < GitRecentChangeCodeLens > ( title , lens ) ;
532532 default :
533533 return lens ;
@@ -565,35 +565,35 @@ export class GitCodeLensProvider implements CodeLensProvider, Disposable {
565565 if ( commit == null ) return applyCommandWithNoClickAction ( title , lens ) ;
566566
567567 switch ( lens . desiredCommand ) {
568- case 'gitlens.copyRemoteCommitUrl' satisfies CodeLensCommands :
568+ case 'gitlens.copyRemoteCommitUrl' :
569569 return applyCopyOrOpenCommitOnRemoteCommand < GitAuthorsCodeLens > ( title , lens , commit , true ) ;
570- case 'gitlens.copyRemoteFileUrl' satisfies CodeLensCommands :
570+ case 'gitlens.copyRemoteFileUrl' :
571571 return applyCopyOrOpenFileOnRemoteCommand < GitAuthorsCodeLens > ( title , lens , commit , true ) ;
572- case 'gitlens.diffWithPrevious' satisfies CodeLensCommands :
572+ case 'gitlens.diffWithPrevious' :
573573 return applyDiffWithPreviousCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
574- case 'gitlens.openCommitOnRemote' satisfies CodeLensCommands :
574+ case 'gitlens.openCommitOnRemote' :
575575 return applyCopyOrOpenCommitOnRemoteCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
576- case 'gitlens.openFileOnRemote' satisfies CodeLensCommands :
576+ case 'gitlens.openFileOnRemote' :
577577 return applyCopyOrOpenFileOnRemoteCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
578- case 'gitlens.revealCommitInView' satisfies CodeLensCommands :
578+ case 'gitlens.revealCommitInView' :
579579 return applyRevealCommitInViewCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
580- case 'gitlens.showCommitsInView' satisfies CodeLensCommands :
580+ case 'gitlens.showCommitsInView' :
581581 return applyShowCommitsInViewCommand < GitAuthorsCodeLens > ( title , lens , blame ) ;
582- case 'gitlens.showQuickCommitDetails' satisfies CodeLensCommands :
582+ case 'gitlens.showQuickCommitDetails' :
583583 return applyShowQuickCommitDetailsCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
584- case 'gitlens.showQuickCommitFileDetails' satisfies CodeLensCommands :
584+ case 'gitlens.showQuickCommitFileDetails' :
585585 return applyShowQuickCommitFileDetailsCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
586- case 'gitlens.showQuickRepoHistory' satisfies CodeLensCommands :
586+ case 'gitlens.showQuickRepoHistory' :
587587 return applyShowQuickCurrentBranchHistoryCommand < GitAuthorsCodeLens > ( title , lens ) ;
588- case 'gitlens.showQuickFileHistory' satisfies CodeLensCommands :
588+ case 'gitlens.showQuickFileHistory' :
589589 return applyShowQuickFileHistoryCommand < GitAuthorsCodeLens > ( title , lens ) ;
590- case 'gitlens.toggleFileBlame' satisfies CodeLensCommands :
590+ case 'gitlens.toggleFileBlame' :
591591 return applyToggleFileBlameCommand < GitAuthorsCodeLens > ( title , lens ) ;
592- case 'gitlens.toggleFileChanges' satisfies CodeLensCommands :
592+ case 'gitlens.toggleFileChanges' :
593593 return applyToggleFileChangesCommand < GitAuthorsCodeLens > ( title , lens , commit ) ;
594- case 'gitlens.toggleFileChangesOnly' satisfies CodeLensCommands :
594+ case 'gitlens.toggleFileChangesOnly' :
595595 return applyToggleFileChangesCommand < GitAuthorsCodeLens > ( title , lens , commit , true ) ;
596- case 'gitlens.toggleFileHeatmap' satisfies CodeLensCommands :
596+ case 'gitlens.toggleFileHeatmap' :
597597 return applyToggleFileHeatmapCommand < GitAuthorsCodeLens > ( title , lens ) ;
598598 default :
599599 return lens ;
0 commit comments