Skip to content

Commit

Permalink
Disable completionItem/resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
kitagry committed Aug 13, 2023
1 parent 60e6ac2 commit 0fefa4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion langserver/initialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (h *Handler) handleInitialize(ctx context.Context, conn *jsonrpc2.Conn, req
HoverProvider: true,
CodeActionProvider: true,
CompletionProvider: &lsp.CompletionOptions{
ResolveProvider: true,
ResolveProvider: false,
TriggerCharacters: []string{"*", "."},
},
},
Expand Down

0 comments on commit 0fefa4b

Please sign in to comment.