intellij-powershell
intellij-powershell copied to clipboard
Adds PowerShell language support to IntelliJ-based IDEs.
Use PtyCommandLine instead of GeneralCommandLine to run the powershell script, so that user can interact with the running script.
- Remove the existence checking of the powershell executable path - Improved the version checking of the powershell executable
When user tries to add new line while being inside multiline comment, redundant closing commend sequences (#>) are added. Image illustrating the problem. 
Currently, the plugin prefers classic PowerShell if both PowerShell and PowerShell Core are available (see `com.intellij.plugin.powershell.ide.run.PSExecutionUtilKt#findPsExecutable`). We should figure out if we it's safe to migrate to Core version by...
Consider this example: ```powershell $q = 1,2,3 # or some multiline cli call $q | Where-Object { $_ -gt 1 } | ForEach-Object { "I'm $_" } ``` VSCode has...
Using plugin version 2.0.10. If I disable the plugin, the problem disappears. It replaces ` if (-Not $DryRun) {} ` with ` if (-Not$DryRun) {} ` regardless what comes after...
Currently, we have two icons (LoDPI and HiDPI) for `.ps1` files that are stored as `.png`. I propose that we get (or draw) new `.svg` icons more in line with...
Here's a valid pwsh script: https://github.com/ForNeVeR/tdlib.native/blob/80222fc53a696f7bc3ef326ca6f1117b51018036/linux/install.ps1 For some reason, the plugin shows an error:
Currently, the completion popup automatically triggers on typing letters (where a cmdlet or a command is expected), but it doesn't trigger when the user types `-`, e.g. `Get-Content -{CARET}` We...