Skip to content

Commit 97e6756

Browse files
committed
more stuff
1 parent 08fe4e8 commit 97e6756

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/cursorless-engine/src/api/CursorlessEngineApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export interface CursorlessEngine {
1212
storedTargets: StoredTargetMap;
1313
hatTokenMap: HatTokenMap;
1414
snippets: Snippets;
15+
spokenFormsJsonPath: string;
1516
injectIde: (ide: IDE | undefined) => void;
1617
runIntegrationTests: () => Promise<void>;
1718
}

packages/cursorless-engine/src/cursorlessEngine.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ export function createCursorlessEngine(
107107
storedTargets,
108108
hatTokenMap,
109109
snippets,
110+
spokenFormsJsonPath: talonSpokenForms.spokenFormsPath,
110111
injectIde,
111112
runIntegrationTests: () =>
112113
runIntegrationTests(treeSitter, languageDefinitions),

packages/cursorless-engine/src/scopeProviders/getSpokenFormEntries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface TalonSpokenFormsPayload {
2424
export class TalonSpokenFormsJsonReader implements TalonSpokenForms {
2525
private disposer = new Disposer();
2626
private notifier = new Notifier();
27-
private spokenFormsPath;
27+
public readonly spokenFormsPath;
2828

2929
constructor(private fileSystem: FileSystem) {
3030
const cursorlessDir = isTesting()

0 commit comments

Comments
 (0)