intellij-powershell
intellij-powershell copied to clipboard
Adds PowerShell language support to IntelliJ-based IDEs.
 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.
I get different errors depending on the keyword I use, but the following is valid PowerShell: ```powershell $copyParams = @{ skipBuild = $true configuration = $Configuration } ``` Yet I...
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
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...
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...
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...
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...
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.