Prevent code suggesting process cancelation on Space press
Answered
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)?
Please sign in to leave a comment.
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.