How to Disable Autosuggestions in fish Shell
If you use the command line then you might be familiar with the Command Prompt or PowerShell on Windows. On Mac, zsh is common. On Linux, it's Bash.
fish shell is an alternative shell available on Windows, macOS, Linux, and BSD.
Typically, shells use profiles (e.g., .bashrc) to manage persistent configuration changes. For example, if I want to permanently set an environment variable then I might do so in my shell configuration file. Then my changes would be loaded each time I start my shell (or terminal application).
fish shell has a different approach to persistent configuration. While internally it uses files for persistent configuration and it offers configuration files as a user option, by convention fish uses autoloading functions and universal variables to manage state between sessions.
While using a shell, I find command suggestions distracting. A command suggestion occurs when you type a few characters and the shell shows an entire command including options and parameters. PowerShell calls this Predictive IntelliSense. And fish calls it an autosuggestion (automatic suggestion).
Note the related but distinct feature of tab completion where you type a few characters and then press the Tab key to automatically complete a single word.
As a personal preference, I turn off IntelliSense.
Below, I show how to turn off autosuggestions in fish.
Turn Off Autosuggestions
Starting with fish version 3.4.0, autosuggestions can be turned off by setting a universal variable.
At the fish shell prompt, use the "set" command to create the variable and set its value:
set -U fish_autosuggestion_enabled 0
The variable will be immediately available to all your fish shells. And, by using the -U switch, the variable will persist across new shells.
Turn On Autosuggestions
To turn on autosuggestions or undo the example above, erase the variable you created:
set -e fish_autosuggestion_enabled
References
Autosuggestions can now be turned off | v3.4.0 Release Notes | fish shell
Setting Up Fish Shell Profile | Stack Overflow
.bash_profile vs .bashrc | Josh Staiger ☙
Difference between "option", "argument", and "parameter" | Stack Overflow
The fish tutorial
Autosuggestions | Tutorial | fish shell
Set and Erase Variables | Tutorial | fish shell
Universal Variables | Tutorial | fish shell
Startup (Where’s .bashrc?) | Tutorial | fish shell
The fish language
Variable Scope | The fish language | fish shell
Universal Variables | The fish language | fish shell
fish commands
Created: Thursday, March 27, 2025
Updated: Thursday, March 27, 2025
/gemlog/