We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41a3c7e commit 69682a4Copy full SHA for 69682a4
src/extension/utils.ts
@@ -30,6 +30,9 @@ export async function getWindowId(context: ExecutionContext): Promise<number> {
30
if (!windowId) {
31
windowId = (window as any).FELLOU_WINDOW_ID;
32
}
33
+ if (!windowId) {
34
+ windowId = context.ekoConfig.workingWindowId;
35
+ }
36
37
38
logger.warn("`getWindowId()` returns " + windowId);
0 commit comments