Skip to content

Commit

Permalink
Add double quotes to Completion options
Browse files Browse the repository at this point in the history
  • Loading branch information
InjuMichorius committed Jul 4, 2024
1 parent 4af23b8 commit ef40500
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion djlsp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ def initialized(ls: DjangoTemplateLanguageServer, params: InitializeParams):


@server.feature(
TEXT_DOCUMENT_COMPLETION, CompletionOptions(trigger_characters=[" ", "|", "'", "."])
TEXT_DOCUMENT_COMPLETION,
CompletionOptions(trigger_characters=[" ", "|", "'", '"', "."]),
)
def completions(ls: DjangoTemplateLanguageServer, params: CompletionParams):
logger.info(f"COMMAND: {TEXT_DOCUMENT_COMPLETION}")
Expand Down

0 comments on commit ef40500

Please sign in to comment.