You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use IntelliJ IDEA on Mac. When I run my simple JLine app in debug mode with all breakpoints in complete method (e.g. in StringsCompleter), IDEA does not respond to breakpoints even if they've been reached.
I was trying to set various flags (-Djline.terminal=jline.UnsupportedTerminal and some others), but it didn't help. When you have no possibility to debug your code it's very inconvenient.
So, are there any plans to add somehow the support of debugging completion code in IDE, to make breakpoints work? It can be very useful for all developers.
Thanks.
The text was updated successfully, but these errors were encountered:
I understand why the same issue occurs on windows, the WindowsTerminal class is attempting to hook in to the command window with various dll calls that are obviously unsuitable for the kind of terminal IDEA is using. I imagine the issue is the same kind of problem in any other OS.
I'm going to try and contact people who write IDEA and also look at the source for it here: https://github.com/JetBrains/intellij-community to try to work out what kind of terminal and how we can hook into it with a different Terminal implementation.
I use
IntelliJ IDEA
on Mac. When I run my simple JLine app in debug mode with all breakpoints in complete method (e.g. in StringsCompleter), IDEA does not respond to breakpoints even if they've been reached.I was trying to set various flags (
-Djline.terminal=jline.UnsupportedTerminal
and some others), but it didn't help. When you have no possibility to debug your code it's very inconvenient.So, are there any plans to add somehow the support of debugging completion code in IDE, to make breakpoints work? It can be very useful for all developers.
Thanks.
The text was updated successfully, but these errors were encountered: