Skip to content

Commit

Permalink
Enable class/object literal method completions (#1835)
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Sep 7, 2022
1 parent 0ef9fa2 commit 7264a8e
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -25,6 +25,8 @@ export async function getUserPreferences(
// @ts-ignore
includeCompletionsForImportStatements: config.suggest?.includeCompletionsForImportStatements ?? true,
includeCompletionsWithSnippetText: config.suggest?.includeCompletionsWithSnippetText ?? true,
includeCompletionsWithClassMemberSnippets: config.suggest?.classMemberSnippets.enabled ?? true,
includeCompletionsWithObjectLiteralMethodSnippets: config.suggest?.objectLiteralMethodSnippets.enabled ?? true,
allowIncompleteCompletions: true,
// @ts-ignore
displayPartsForJSDoc: true,
Expand Down

0 comments on commit 7264a8e

Please sign in to comment.