We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 859e900 commit 1038c2bCopy full SHA for 1038c2b
packages/cursorless-engine/src/cursorlessEngine.ts
@@ -1,4 +1,4 @@
1
-import type {
+import {
2
Command,
3
CommandServerApi,
4
Direction,
@@ -89,8 +89,14 @@ export async function createCursorlessEngine({
89
}: EngineProps): Promise<CursorlessEngine> {
90
injectIde(ide);
91
92
- const test = new Testing();
+ const test: ScopeHandler = new Testing();
93
console.log(test);
94
+ test.generateScopes(
95
+ null as unknown as TextEditor,
96
+ new Position(0, 0),
97
+ "forward",
98
+ {},
99
+ );
100
101
const debug = new Debug(ide);
102
const rangeUpdater = new RangeUpdater();
0 commit comments