Skip to content

Commit

Permalink
use common method (#16165)
Browse files Browse the repository at this point in the history
  • Loading branch information
amunger authored Oct 28, 2024
1 parent c399cec commit fee0a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interactive-window/commands/commandRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class CommandRegistry implements IDisposable, IExtensionSyncActivationSer
this.registerCommand(Commands.ScrollToCell, (file: Uri, id: string) => this.scrollToCell(file, id));
this.registerCommand(Commands.InteractiveClearAll, this.clearAllCellsInInteractiveWindow);
this.registerCommand(Commands.InteractiveGoToCode, this.goToCodeInInteractiveWindow);
commands.registerCommand(Commands.InteractiveCopyCell, this.copyCellInInteractiveWindow);
this.registerCommand(Commands.InteractiveCopyCell, this.copyCellInInteractiveWindow);
}
public dispose() {
this.disposables.forEach((d) => d.dispose());
Expand Down

0 comments on commit fee0a06

Please sign in to comment.