admin管理员组

文章数量:1023758

I would like to add support for spelling correction to the code completion logic of my extension, and have found that I can return an instance of CompletionList with isIncomplete=true to have VSCode call my onCompletion handler on each keystroke, but it will apply an additional filter atop my suggestions no matter what I do. The filter matches exact keystrokes, which makes things like spelling correction impossible. Is there a way to disable this post-processing logic in VSCode?

I would like to add support for spelling correction to the code completion logic of my extension, and have found that I can return an instance of CompletionList with isIncomplete=true to have VSCode call my onCompletion handler on each keystroke, but it will apply an additional filter atop my suggestions no matter what I do. The filter matches exact keystrokes, which makes things like spelling correction impossible. Is there a way to disable this post-processing logic in VSCode?

本文标签: How may I disable the postprocessing (additional filtering) of code completion suggestionsStack Overflow