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

![image](https://user-images.githubusercontent.com/19402950/69245599-63cc5180-0ba7-11ea-9166-9a0d7cebcdca.png) When using or import module is placed at the begining of the script and followed by param block, the autocompletion and variable parsing is broken.

bug
help wanted
parser

I get different errors depending on the keyword I use, but the following is valid PowerShell: ```powershell $copyParams = @{ skipBuild = $true configuration = $Configuration } ``` Yet I...

bug
help wanted
good first issue
parser

Version 2.0.1 doesn't show highlighting for `.DESCRIPTION`, `.NOTES`, etc keywords in block comments. This plugin: https://i.imgur.com/V67Fio0.png Desired result using Visual Studio Code: https://i.imgur.com/rhRqtdS.png

enhancement
help wanted
parser

If I have a block comment for a script or function like this... ``` powershell ``` (".CL" is a Change Log) If I hit enter in the whitespace between the...

bug
help wanted

I've configured Code Folding in Rider but none of the settings appear to apply to Powershell, nor do any obvious places where folding could apply show as being fold-able. It...

``` Plugin 'com.intellij.plugin.adernov.powershell' failed to initialize and will be disabled. Please restart IntelliJ IDEA. java.lang.AbstractMethodError: Method com/intellij/plugin/powershell/lang/lsp/LSPInitMain.getComponentName()Ljava/lang/String; is abstract at com.intellij.plugin.powershell.lang.lsp.LSPInitMain.getComponentName(LSPInitMain.kt) at com.intellij.openapi.components.impl.ComponentManagerImpl.b(ComponentManagerImpl.java:417) at com.intellij.openapi.components.impl.ComponentManagerImpl.access$300(ComponentManagerImpl.java:58) at com.intellij.openapi.components.impl.ComponentManagerImpl$ComponentConfigComponentAdapter.getComponentInstance(ComponentManagerImpl.java:482) at com.intellij.openapi.components.impl.ComponentManagerImpl.createComponents(ComponentManagerImpl.java:120) at...

When the windows user folder contains a space, the powershell terminal fails to initialize. Example Username: Fooby Doobar ``` C:\Users\Fooby : The term 'C:\Users\Fooby' is not recognized as the name...

bug
help wanted
good first issue

I have created a simple PowerShell script (with .ps1 extension, which GitHub did not like, hence it is .txt) as attached: [OutputDemo.txt](https://github.com/ant-druha/PowerShell/files/2772213/OutputDemo.txt) I am running PowerShell Core 6.1.2 on my...

enhancement
help wanted
good first issue

While this plugin adds syntax highlighting to code blocks in markdown if you specify the syntax as **powershell**, it doesn't add the ability to run the code block directly from...

enhancement
help wanted

PowerShell has some common variables (e.g. `$ErrorActionPreference`) described [here](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-6). I suggest that we add them to the autocompletion list, because these're often useful.