Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Egor Ushakov
Total activity
350
Last activity
December 06, 2023 08:22
Member since
April 08, 2014 09:02
Following
0 users
Followed by
1 user
Votes
0
Subscriptions
128
Activity overview
Articles (0)
Posts (0)
Comments (222)
Sort by votes
Recent activity
Votes
Created
October 07, 2014 15:54
You need to drag the watches tab itself (where icon with googles located) from the detached window to the containerIt may be easier to restore layout (there is a button for that on the left toolbar...
Community
IntelliJ IDEA Users
How to dock floating Watches window?
5 votes
Edited
February 19, 2019 11:32
You can use XBreakpointManagerImpl.getAllBreakpoints and then filter by getType() instanceof XLineBreakpointType
Community
IntelliJ IDEA Open API and Plugin Development
Get breakpoints
2 votes
Created
November 27, 2023 13:36
Hi, any methods invocation invalidate everything by calling com.intellij.debugger.jdi.VirtualMachineProxyImpl#clearCaches (and increasing myTimeStamp theres). Usually to overcome this we use com.in...
Community
IntelliJ IDEA Open API and Plugin Development
How to run methods during debugging without invalidating the current stack frame
1 vote
Created
May 04, 2021 09:50
Hi, it seems that JavaValue does not follow the api correctly, please call computePresentation before computeChildren for it to work.
Community
IntelliJ IDEA Open API and Plugin Development
Error when reading debugging variables during a debugging session with a plugin
1 vote
Edited
March 18, 2021 08:01
To some extent this could be solved by using "catch class filter" on the exception breakpoint with your app package filter like "my.app.*". This way you'll stop only in catch blocks in your code.
Community
IntelliJ IDEA Users
In the debugger, how to ignore exceptions that never pass through my code
1 vote
Edited
March 01, 2021 16:50
Hi, you can start with XDebuggerManager.getInstance(project).getCurrentSession() it will return an instance of the current XDebugSession. Then com.intellij.xdebugger.XDebugSession#getCurrentStackFr...
Community
IntelliJ IDEA Open API and Plugin Development
Accessing the debug information (variables) while debugging with a plugin (Intellij)
1 vote
Created
June 17, 2019 13:45
Hi, you may need to implement your own com.intellij.debugger.PositionManager to map locations back to the original sources
Community
IntelliJ IDEA Open API and Plugin Development
Breakpoints in custom JVM Languages (C, Fortran)
1 vote
Created
May 20, 2019 14:29
You can try adding a listener com.intellij.xdebugger.XDebugSessionListener with your evaluations in beforeSessionResume and sessionPaused.
Community
IntelliJ IDEA Open API and Plugin Development
How to chain debugger actions and evaluations with com.intellij.xdebugger.XDebugSession?
1 vote
Created
May 29, 2018 16:19
To toggle a line breakpoint you can use XDebuggerUtil.toggleLineBreakpoint
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically start debugger
1 vote
Edited
May 29, 2018 12:43
To add a breakpoint you can use XBreakpointManager.addLineBreakpoint, to debug a configuration - ExecutionEnvironmentBuilder.create(project, DefaultDebugExecutor.getDebugExecutorInstance(), runConf...
Community
IntelliJ IDEA Open API and Plugin Development
Programmatically start debugger
1 vote
Next
›
Last
»