DEV Community

Discussion on: Fish-like Autosuggestion in Powershell

Collapse
 
fcoclavero profile image
Francisco Clavero • Edited

Thanks a lot!

If you get the following error:

Set-PSReadLineOption : A parameter cannot be found that matches parameter name 'PredictionSource'
Enter fullscreen mode Exit fullscreen mode

installing a prerelease may solve the issue:

Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck
Enter fullscreen mode Exit fullscreen mode