Skip to content

Instantly share code, notes, and snippets.

@jcefoli
Created December 19, 2022 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcefoli/3b718c0e23cca52f487931b65fb26823 to your computer and use it in GitHub Desktop.
Save jcefoli/3b718c0e23cca52f487931b65fb26823 to your computer and use it in GitHub Desktop.
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