Prevent code suggesting process cancelation on Space press
已回答
In my project I have custom code suggestion provider designed for Gherkin language.

Everything works fine until I press space - then suggestion popup disappears. I guess it is expected IntelliJ behavior.

Of course, suggestions appear again after pressing CTRL + Space, but I wonder if there is any other way to prevent suggestion process cancelation on Space press (either programatically or in IntelliJ settings)?
请先登录再写评论。
Hi Patryk,
Please see the last question in the
com.intellij.codeInsight.completion.CompletionContributor
's Javadoc:Hi Karol,
Thank you for the hint, I managed to modify suggestion behavior with custom CharFilter.