Skip to content

Instantly share code, notes, and snippets.

@jcefoli
Created December 19, 2022 17:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Powershell Intellisense
## 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