4

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?

Alex
  • 2,091
  • 6
  • 31
  • 49
  • Jline code completion is not compatible with Idea's console (see [the discussion about this bug](https://github.com/jline/jline2/issues/185) and `jline.WindowsTerminal` class javadoc) – Evgeney Kuznetsov Feb 12 '17 at 09:50

1 Answers1

0
 jline.TerminalFactory.registerFlavor(TerminalFactory.Flavor.WINDOWS, jline.UnsupportedTerminal.class);
S66D
  • 1