For Word Completion (Ctrl+Space) in Visual Studio, the expected LSP message is:
textDocument/completion
If your server isn’t receiving this, check:
- Your server’s
completionProvider
includestriggerCharacters
andresolveProvider
. - Ctrl+Space is mapped to
Edit.CompleteWord
in Visual Studio settings. - The cursor is in a valid context (not in comments or strings).