From a1ce49e72ff7affe67ecb36da20b2f7245de0c17 Mon Sep 17 00:00:00 2001 From: Andreas Arvidsson Date: Thu, 26 Dec 2024 11:55:40 +0100 Subject: [PATCH] Add empty line for execute command --- packages/cursorless-engine/src/actions/ExecuteCommand.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cursorless-engine/src/actions/ExecuteCommand.ts b/packages/cursorless-engine/src/actions/ExecuteCommand.ts index e6c8a41e36..403cf160d1 100644 --- a/packages/cursorless-engine/src/actions/ExecuteCommand.ts +++ b/packages/cursorless-engine/src/actions/ExecuteCommand.ts @@ -14,6 +14,7 @@ import type { ActionReturnValue } from "./actions.types"; */ export default class ExecuteCommand { private callbackAction: CallbackAction; + constructor(rangeUpdater: RangeUpdater) { this.callbackAction = new CallbackAction(rangeUpdater); this.run = this.run.bind(this);