Fix fuzzy match slider

This commit is contained in:
Matt Rubens
2024-12-31 10:04:43 -08:00
parent 2672e6db93
commit cec623ada4
2 changed files with 3 additions and 1 deletions

View File

@@ -1052,6 +1052,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
preferredLanguage,
writeDelayMs,
terminalOutputLineLimit,
fuzzyMatchThreshold,
} = await this.getState()
const allowedCommands = vscode.workspace
@@ -1082,6 +1083,7 @@ export class ClineProvider implements vscode.WebviewViewProvider {
preferredLanguage: preferredLanguage ?? 'English',
writeDelayMs: writeDelayMs ?? 1000,
terminalOutputLineLimit: terminalOutputLineLimit ?? 500,
fuzzyMatchThreshold: fuzzyMatchThreshold ?? 1.0,
}
}