Closed douglascamata closed 5 years ago
I'll have to look into this. I thought setting editor.wordBasedSuggestions
to true
would get suggestions from both providers, but it doesn't have any effect.
It looks like this is intended behavior in VSCode. Word-based suggestions don't get triggered when a provider with a higher score provides results. There's some discussion of the issue, including the possibility of an option to include both, at https://github.com/Microsoft/vscode/issues/21611.
This extension have a really weird behaviour when it comes to autocompleting from the current dictionary of words (usually the active file) and from the
solargraph
gem itself.It seems like whenever we get a response from the solargraph server with extension it automatically removes all the dictionary words from the suggestions.
Example:
You won't see
foo
when you trigger the autocomplete there at the last line... you will only seefoo_string
. 😞