-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Don't run on_completion_inserted on insert_best_completion Pressing <tab> in documents results in huge "LSP: No match for inserted "<entire document>.." entries in the console. * Don't cancel requested completions for the exact same word while typing ahead. If typing view.settings, completion at dot is cancelled by "s", "e" etc. even though original request is still relevant * Don't present completion results from previous word If typing view.settings() quickly, a popup would show at the cursor offering "settings()". In the response handler, we detect if cursor has passed a word boundary and ignore the result if so. * Revert fix for #745, causing extra requests after trigger character If there are no completion results, typing view.s would trigger requests at both '.' and 's'.
- Loading branch information
Showing
3 changed files
with
55 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters