IntelliJ IDEA doesn't intercept JLine code completion in bebug mode

空扰寡人 提交于 2019-12-01 05:27:17

问题


I tried to run simple Java application wich is used code completion. When I run it in separate console it works like a charm. But when I try to it via IntelliJ IDEA, then my IDE doesn't intercept code completion actions in debug mode.

I tried to add to my VM options

-Djline.terminal=jline.UnsupportedTerminal

But it doesn't help me.

Maybe there is someone who faced with this problem?


回答1:


 jline.TerminalFactory.registerFlavor(TerminalFactory.Flavor.WINDOWS, jline.UnsupportedTerminal.class);


来源:https://stackoverflow.com/questions/28571678/intellij-idea-doesnt-intercept-jline-code-completion-in-bebug-mode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!