We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f64b62c commit 2b56b82Copy full SHA for 2b56b82
src/features/terminal/utils.ts
@@ -44,7 +44,7 @@ export async function waitForShellIntegration(terminal: Terminal): Promise<boole
44
45
// Condition 3: Detect prompt patterns in terminal output
46
new Promise<boolean>((resolve) => {
47
- const dataEvents: string = [];
+ const dataEvents: string[] = [];
48
const debounced = createSimpleDebounce(50, () => {
49
if (dataEvents && detectsCommonPromptPattern(dataEvents.join(''))) {
50
resolve(false);
0 commit comments