intellij-powershell icon indicating copy to clipboard operation
intellij-powershell copied to clipboard

Adds PowerShell language support to IntelliJ-based IDEs.

Results 107 intellij-powershell issues
Sort by recently updated
recently updated
newest added

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. ![rider_multiline_comment issue](https://github.com/ant-druha/intellij-powershell/assets/34109031/4ee6dad6-2c9e-468f-8c73-0e2ed986ae59)

bug
help wanted
good first issue

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...

enhancement

Consider this example: ```powershell $q = 1,2,3 # or some multiline cli call $q | Where-Object { $_ -gt 1 } | ForEach-Object { "I'm $_" } ``` VSCode has...

help wanted
parser

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...

bug
help wanted
formatting

Command: `Write-Host '✔

bug
help wanted

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...

enhancement
help wanted

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:

bug
help wanted
good first issue
parser

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...

enhancement
help wanted
good first issue
completion