After working with Java in Eclipse for 8 years I switched to IntelliJ Idea. Imagine the "cultural shock" I had hehehe Anyway, there's one thing I really miss and not sure if IntelliJ supports it: easily editing Java code during a breakpoint.
In short, in Eclipse if i edit a line of code below the breakpoint and save the change, it will be automatically applied during program execution. If I edit the line of code above the breakpoint (already executed), Eclipse debugger with move the "running cursor" to the beginning of the function whose code I changed and continue running from there including the changes I just added.
I know that in IntelliJ there's an option to build the module and approve "hot swap" of the code but the project I'm working on is humongous, build takes about 2 minutes and sometimes while investigating I need to make several changes and adjustments while debugging.
Is there an option or plugin for IntelliJ to automatically apply changes below the breakpoint or re-execute the function in case I made changes before the breakpoint?