Skip to content

Commit

Permalink
Merge pull request #90 from pappasam/fix-completion-resolve
Browse files Browse the repository at this point in the history
Completion resolve provider now works again
  • Loading branch information
pappasam authored Mar 17, 2021
2 parents ec78835 + 11cf92d commit a2a4f0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jedi_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ def completion_item_resolve(


@SERVER.feature(
COMPLETION, CompletionOptions(trigger_characters=[".", "'", '"'])
COMPLETION,
CompletionOptions(
trigger_characters=[".", "'", '"'], resolve_provider=True
),
)
def completion(
server: JediLanguageServer, params: CompletionParams
Expand Down

0 comments on commit a2a4f0e

Please sign in to comment.