Support partial matrix context completion

This commit is contained in:
Josh Gross
2022-12-08 14:34:11 -05:00
parent 2f88970fce
commit eeb39de9d5
5 changed files with 64 additions and 26 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ export async function complete(
const expressionInput = (getExpressionInput(currentInput, relCharPos) || "").trim();
const allowedContext = getAllowedContext(token, parent);
const context = await getContext(allowedContext, contextProviderConfig, workflowContext);
const context = await getContext(allowedContext, contextProviderConfig, workflowContext, true);
return completeExpression(expressionInput, context, []);
}