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

Bumps org.jetbrains.intellij.platform from 2.5.0 to 2.6.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.jetbrains.intellij.platform&package-manager=gradle&previous-version=2.5.0&new-version=2.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies
java

Currently (plugin version 2.10.0), the [pipeline chain operators](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_pipeline_chain_operators) `&&` and `||` syntax (introduced in PS Core 7) seem to be not supported at all: ![Image](https://github.com/user-attachments/assets/5e665a7c-4f4c-483b-abda-f9e191e9e7f4)

bug
help wanted
parser

_(Migrated from https://github.com/ForNeVeR/VerifyEncoding/issues/27.)_ > Although the expression is valid and works, it breaks Rider parser. > > https://github.com/ForNeVeR/VerifyEncoding/blob/main/VerifyEncoding/Test-Encoding.ps1#L55 > > ![Image](https://github.com/user-attachments/assets/b3f3f251-6ec3-4061-94eb-2c9aad8496a7)

bug
help wanted
parser

Originally reported at https://youtrack.jetbrains.com/issue/IJPL-181167 Please see the attached screenshots showing the issue. The problem occurs with this code snippet: ```powershell class Testing { [TestClass]Deserialize([string]$json) { $jsonObj = [Testing]::New() return [JsonSerializer]::Deserialize[TestClass]($json,$jsonObj.GetOptions())...

bug
help wanted
formatting

While our recent struggles with the lexer and the parser so far weren't so fruitful (e.g., see #236 and #258), I have an idea of a radical improvement. What if...

enhancement
help wanted

As demonstrated by this video, every time I hit the format hotkey, the wrapped lines starting with either `"` or `'` are intended further by a single space. https://github.com/user-attachments/assets/1725cb58-17fc-42a6-bc56-e18bfd7298e3 Example...

bug
help wanted

I'm using version 2.7.0 It looks like plugin is unable to recognize jagged array declaration: ``` [int[][]]$Test=@([int[]]::New(3),[int[]]::New(4)) Write-Host $Test[0] ``` Script is successfully executed, but in IDE it is highlighting...

bug
help wanted