Powershell Intellisense
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## https://devblogs.microsoft.com/powershell/psreadline-2-2-6-enables-predictive-intellisense-by-default ## | |
# Get Configuration | |
Get-PSReadLineOption | |
## Get Intellisense Option | |
(Get-PSReadLineOption).PredictionSource | |
# Command History Path | |
(Get-PSReadLineOption).HistorySavePath | |
# Disable all predictions: | |
Set-PSReadLineOption -PredictionSource None | |
# Enable history-based suggestions | |
Set-PSReadLineOption -PredictionSource History | |
# Enable additional plugins without history: | |
Set-PSReadLineOption -PredictionSource Plugin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment