/** \page faq Frequently asked questions \htmlonly[block]

Frequently Asked Questions

\endhtmlonly \section faq-envvar How do I set or clear an environment variable? Use the `set` command: \fish{cli-dark} set -x key value set -e key \endfish \section faq-login-cmd How do I run a command every login? What's fish's equivalent to .bashrc? Edit the file `~/.config/fish/config.fish`, creating it if it does not exist (Note the leading period).
\section faq-prompt How do I set my prompt? The prompt is the output of the `fish_prompt` function. Put it in `~/.config/fish/functions/fish_prompt.fish`. For example, a simple prompt is: \fish{cli-dark} function fish_prompt set_color $fish_color_cwd echo -n (prompt_pwd) set_color normal echo -n ' > ' end \endfish You can also use the Web configuration tool, `fish_config`, to preview and choose from a gallery of sample prompts. \section faq-cmd-history How do I run a command from history? Type some part of the command, and then hit the @cursor_key{↑,up} or @cursor_key{↓,down} arrow keys to navigate through history matches.
\section faq-subcommand How do I run a subcommand? The backtick doesn't work! `fish` uses parentheses for subcommands. For example: \fish{cli-dark} for i in (ls) echo $i end \endfish \section faq-exit-status How do I get the exit status of a command? Use the `$status` variable. This replaces the `$?` variable used in some other shells.
\section faq-single-env How do I set an environment variable for just one command? `SOME_VAR=1 command` produces an error: `Unknown command "SOME_VAR=1"`. Use the `env` command. `env SOME_VAR=1 command` You can also declare a local variable in a block: \fish{cli-dark} begin set -lx SOME_VAR 1 command end \endfish \section faq-customize-colors How do I customize my syntax highlighting colors? Use the web configuration tool, `fish_config`, or alter the `fish_color` family of environment variables.
\section faq-update-manpage-completions How do I update man page completions? Use the `fish_update_completions` command.
\section faq-cwd-symlink Why does cd, $PWD and and various fish commands always resolve symlinked directories to their canonical path? For example if `~/images` is a symlink to `~/Documents/Images`, if I write '`cd images`', my prompt will say `~/Documents/Images`, not `~/images`. Because it is impossible to consistently keep symlinked directories unresolved. It is indeed possible to do this partially, and many other shells do so. But it was felt there are enough serious corner cases that this is a bad idea. Most such issues have to do with how '..' is handled, and are variations of the following example: Writing `cd images; ls ..` given the above directory structure would list the contents of `~/Documents`, not of `~`, even though using `cd ..` changes the current directory to `~`, and the prompt, the `pwd` builtin and many other directory information sources suggest that the current directory is `~/images` and its parent is `~`. This issue is not possible to fix without either making every single command into a builtin, breaking Unix semantics or implementing kludges in every single command. This issue can also be seen when doing IO redirection. Another related issue is that many programs that operate on recursive directory trees, like the find command, silently ignore symlinked directories. For example, ```find $PWD -name '*.txt'``` silently fails in shells that don't resolve symlinked paths.
\section faq-cd-implicit I accidentally entered a directory path and fish changed directory. What happened? If fish is unable to locate a command with a given name, and it starts with '`.`', '`/`' or '`~`', fish will test if a directory of that name exists. If it does, it is implicitly assumed that you want to change working directory. For example, the fastest way to switch to your home directory is to simply press `~` and enter.
\section faq-open The open command doesn't work. The `open` command uses the MIME type database and the `.desktop` files used by Gnome and KDE to identify filetypes and default actions. If at least one of these environments is installed, but the open command is not working, this probably means that the relevant files are installed in a non-standard location. Consider asking for more help.
\section faq-default How do I make fish my default shell? If you installed fish manually (e.g. by compiling it, not by using a package manager), you first need to add fish to the list of shells by executing the following command (assuming you installed fish in /usr/local): \fish{cli-dark} echo /usr/local/bin/fish | sudo tee -a /etc/shells \endfish If you installed a prepackaged version of fish, the package manager should have already done this for you. In order to change your default shell, type: \fish{cli-dark} chsh -s /usr/local/bin/fish \endfish You may need to adjust the above path to e.g. `/usr/bin/fish`. Use the command `which fish` if you are unsure of where fish is installed. Unfortunately, there is no way to make the changes take effect at once. You will need to log out and back in again.
\section faq-titlebar I'm seeing weird output before each prompt when using screen. What's wrong? Quick answer: Run the following command in fish: \fish{cli-dark} function fish_title; end; funcsave fish_title \endfish Problem solved! The long answer: Fish is trying to set the titlebar message of your terminal. While screen itself supports this feature, your terminal does not. Unfortunately, when the underlying terminal doesn't support setting the titlebar, screen simply passes through the escape codes and text to the underlying terminal instead of ignoring them. It is impossible to detect and resolve this problem from inside fish since fish has no way of knowing what the underlying terminal type is. For now, the only way to fix this is to unset the titlebar message, as suggested above. Note that fish has a default titlebar message, which will be used if the fish_title function is undefined. So simply unsetting the fish_title function will not work.
\section faq-greeting How do I change the greeting message? Change the value of the variable `fish_greeting` or create a `fish_greeting` function. For example, to remove the greeting use: \fish{cli-dark} set fish_greeting \endfish \section faq-history Why doesn't history substitution ("!$" etc.) work? Because history substitution is an awkward interface that was invented before interactive line editing was even possible. Fish drops it in favor of perfecting the interactive history recall interface. Switching requires a small change of habits: if you want to modify an old line/word, first recall it, then edit. E.g. don't type "sudo !!" - first press Up, then Home, then type "sudo ". Fish history recall is very simple yet effective: - As in any modern shell, the Up arrow, @cursor_key{↑,Up} recalls whole lines, starting from the last line executed. A single press replaces "!!", later presses replace "!-3" and the like. - If the line you want is far back in the history, type any part of the line and then press Up one or more times. This will constrain the recall to lines that include this text, and you will get to the line you want much faster. This replaces "!vi", "!?bar.c" and the like. - @key{Alt,↑,Up} recalls individual arguments, starting from the last argument in the last line executed. A single press replaces "!$", later presses replace "!!:4" and the like. - If the argument you want is far back in history (e.g. 2 lines back - that's a lot of words!), type any part of it and then press @key{Alt,↑,Up}. This will show only arguments containing that part and you will get what you want much faster. Try it out, this is very convenient! - If you want to reuse several arguments from the same line ("!!:3*" and the like), consider recalling the whole line and removing what you don't need (@key{Alt,D} and @key{Alt,Backspace} are your friends). See documentation for more details about line editing in fish.
\section faq-uninstalling Uninstalling fish Should you wish to uninstall fish, first ensure fish is not set as your shell. Run `chsh -s /bin/bash` if you are not sure. Next, do the following (assuming fish was installed to /usr/local): \fish{cli-dark} rm -Rf /usr/local/etc/fish /usr/local/share/fish ~/.config/fish rm /usr/local/share/man/man1/fish*.1 cd /usr/local/bin rm -f fish fish_indent \endfish
\section faq-reserved-chars Unicode private-use characters reserved by fish Fish reserves the Unicode private-use character range from U+F600 thru U+F73F for internal use. Any attempt to feed characters in that range to fish will result in them being replaced by the Unicode "replacement character" U+FFFD. This includes both interactive input as well as any file read by fish (but not programs run by fish). \htmlonly[block]
\endhtmlonly */