With this example enum:
public enum FooBar {
FOO,
BAR,
}
when using it as
var a = FooBar.FOO;
if (a !=
I can trigger completion at this point and I get the correct list that includes FOO and BAR. However after selecting BAR in the completion I get
instead of
Is this something that could be fixed in coc-java or is it a problem in the language server?
btw, thanks for such a helpful tool! :-)