Created
December 19, 2022 17:05
-
-
Save jcefoli/3b718c0e23cca52f487931b65fb26823 to your computer and use it in GitHub Desktop.
Powershell Intellisense
This file contains hidden or 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