💾 Archived View for pwshnotes.flounder.online › gemlog › 2022-11-10%20-%20disable%20predictions.gmi captured on 2023-01-29 at 02:29:01. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

Disable PowerShell Predictions

PowerShell IntelliSense is turned on by default starting in PowerShell v7.3.0. I find IntelliSense to be very distracting.

To disable IntelliSense / predictions / suggestions, add the following lines to your profile:

# Disable IntelliSense
Set-PSReadLineOption -PredictionSource None

You can also type that at the command line to disable IntelliSense for the current session.

References

Announcing PSReadLine 2.1+ with Predictive IntelliSense | PowerShell Blog

about_Profiles | Microsoft Docs

Created: Thursday, November 10, 2022

Updated: Thursday, November 10, 2022