PowerShell IDE for editing when debugging

I am looking for a PowerShell IDE. My requirements are simple:

  • Syntax highlighting
  • Debugger
  • Ability to edit code when stopping at a breakpoint .

This last issue is a problem. I already looked at https://stackoverflow.com/questions/171514/best-ide-for-powershell and tried PowerShell ISE and PowerGUI - both forbid this. (I also tried PowerShellAnalyzer , which can only be described with one word: FAIL)

I am not looking for any editing and continuing functions. I literally just want to not be prevented from editing text while stopping at a breakpoint. I am not looking for any arguments about why this is not recommended. I just want the IDE to allow this.

+3
source share
1 answer

PowerSE can edit scripts when it stops at a breakpoint.

I know that this is not a problem for you, as you said, but you can continue the transition through the script, but it runs the old code, so the position marker no longer aligns with the executable code.

+1
source

Source: https://habr.com/ru/post/1778214/


All Articles