textDocument/completion feature not working properly
See original GitHub issuethe completions
function is called on every change in the document, regardless of the trigger_characters
list sent inside the CompletionOptions
object to the ls.feature(...)
decorator
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
lsp not working properly · Issue #3411 · emacs-lsp/lsp-mode
Specifically, it appears that LSP client doesn't register its capabilities correctly. For example, completion and and semantic highlighting are ...
Read more >VS Code API | Visual Studio Code Extension API
The completion item provider interface defines the contract between extensions and IntelliSense. Providers can delay the computation of the detail and ...
Read more >Code completion not working for Xtext language server
In the xxx.xtext.ide plugin's srg-gen folder, I see xxx.ide.contentassist.antlr package (which I assume provides the code completion feature).
Read more >Integrating Code Completion in Visual Studio Code
Our objective is to build a working VSCode extension that will showcase a limited form of code completion for the Kotlin language. Our...
Read more >pygls Documentation
Set a breakpoint inside completion function and go back to opened json file in your editor. Now press ctrl + space (control +...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
seems to be working fine now, thanks for the help
I just updated npm packages in the
json-extension
example in #175. ~Please checkoutdanixeee/json-example-npm-updates
and try again.~EDIT: It’s merged, so checkout the
master
branch.Here’s my output:
For the server, as you already know, you need to create a new python virtual env, install
pygls
, and add a python path to thesettings.json
:After that, just open
json-extension
in a new VS Code window or add it as a workspace folder, and start debugging (Server + Client
).Let me know if
completions
are working well.