No description
Find a file
Johannes Altmanninger fe6c76d058 Read into local variables in some completions
Otherwise these might modify global or universal vars.
2020-05-15 07:14:54 +02:00
.builds CI: Add python dependencies 2019-06-25 19:17:53 +02:00
.github github actions: Disable macOS for now 2020-04-18 10:31:22 +02:00
benchmarks Reindent functions to remove useless quotes 2020-03-09 19:46:43 +01:00
build_tools Update littlecheck to escape output 2020-04-26 14:39:46 +02:00
cmake Add CMake variable FISH_USE_SYSTEM_PCRE2 2020-04-28 18:30:40 -07:00
debian debian packaging: recommend python3-distutils for web config 2020-04-11 22:18:31 +08:00
doc_src Add $fish_force_vi_cursor variable to allow cursor setting on unsupported terminals 2020-05-14 22:25:20 +02:00
etc Update /etc/config.fish to use current syntax 2020-05-08 15:20:36 +08:00
osx Add the get-task-allow entitlement 2020-02-29 15:29:50 -08:00
pcre2 pcre2: re-import some sources overzealously removed in 73ecf1576b 2020-05-12 13:28:14 +08:00
po Add newline to history clear message for consistency 2020-05-08 22:36:57 +08:00
share Read into local variables in some completions 2020-05-15 07:14:54 +02:00
src Fix IO error handling in non-interactive reader 2020-05-10 22:33:22 +02:00
tests Disable flaky pipeline-pgroup test 2020-05-07 21:19:28 +02:00
.clang-format Ensure that clang-format places config.h first in header list 2019-10-13 15:45:02 -07:00
.clang-tidy [clang-tidy] remove pointless public 2020-04-05 10:13:43 +02:00
.cppcheck.rules remove pointless flock() lint warning 2017-05-09 21:03:00 -07:00
.cppcheck.suppressions cppcheck: Suppress incorrectStringBooleanError 2018-11-14 12:15:40 +01:00
.editorconfig Don't trim trailing whitespace on .rst files 2019-06-15 22:36:07 -07:00
.gitattributes We no longer have two doc systems, move sphinx_doc_src back to doc_src 2020-02-19 17:00:35 -08:00
.gitignore gitignore __pycache__ 2020-03-21 17:48:01 -07:00
.oclint Tell oclint to ignore another idiom that is safe 2017-09-09 00:18:05 -07:00
.travis.yml Travis: PCRE2 is already installed on osx 2020-05-11 18:39:04 +02:00
BSDmakefile Revert "Remove Makefile(s)" 2019-12-18 21:27:09 -06:00
CHANGELOG.md Add $fish_force_vi_cursor variable to allow cursor setting on unsupported terminals 2020-05-14 22:25:20 +02:00
CMakeLists.txt Add clang-tidy to build_tools/lint.fish 2020-04-04 14:47:58 -07:00
config_cmake.h.in cmake: adjust logic for TPARM_VARARGS 2020-02-20 18:14:54 +01:00
CONTRIBUTING.md fish_xgettext: update translation generation for new build system 2019-09-21 22:29:19 +08:00
COPYING chore: bump copyright year 2019 → 2020 2020-03-14 14:03:09 -07:00
Dockerfile Update Dockerfile for cmake3 2019-04-28 11:41:37 -07:00
fish.desktop Add .desktop file and logo for appimage 2020-01-08 19:50:46 +01:00
fish.pc.in Use pkg-config variables 2020-04-04 13:07:54 +02:00
fish.png Add .desktop file and logo for appimage 2020-01-08 19:50:46 +01:00
fish.spec.in fish.spec: stop running tests on RHEL 6 2020-04-01 17:17:16 +08:00
GNUmakefile [make] add default all in addition to catch-all % 2019-12-18 22:13:41 -06:00
README.md Disavow IRC channel 2019-11-30 09:29:49 +01:00

fish - the friendly interactive shell Build Status

fish is a smart and user-friendly command line shell for macOS, Linux, and the rest of the family. fish includes features like syntax highlighting, autosuggest-as-you-type, and fancy tab completions that just work, with no configuration required.

For more on fish's design philosophy, see the design document.

Quick Start

fish generally works like other shells, like bash or zsh. A few important differences can be found at https://fishshell.com/docs/current/tutorial.html by searching for the magic phrase "unlike other shells".

Detailed user documentation is available by running help within fish, and also at https://fishshell.com/docs/current/index.html

You can quickly play with fish right in your browser by clicking the button below:

Try in browser

Getting fish

macOS

fish can be installed:

Packages for Linux

Packages for Debian, Fedora, openSUSE, and Red Hat Enterprise Linux/CentOS are available from the openSUSE Build Service.

Packages for Ubuntu are available from the fish PPA, and can be installed using the following commands:

sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish

Instructions for other distributions may be found at fishshell.com.

Windows

  • On Windows 10, fish can be installed under the WSL Windows Subsystem for Linux with sudo apt install fish or from source with the instructions below.
  • Fish can also be installed on all versions of Windows using Cygwin (from the Shells category).

Building from source

If packages are not available for your platform, GPG-signed tarballs are available from fishshell.com and fish-shell on GitHub. See the Building section for instructions.

Running fish

Once installed, run fish from your current shell to try fish out!

Dependencies

Running fish requires:

  • curses or ncurses (preinstalled on most *nix systems)
  • some common *nix system utilities (currently mktemp), in addition to the basic POSIX utilities (cat, cut, dirname, ls, mkdir, mkfifo, rm, sort, tee, tr, uname and sed at least, but the full coreutils plus find, sed and awk is preferred)
  • gettext (library and gettext command), if compiled with translation support

The following optional features also have specific requirements:

  • builtin commands that have the --help option or print usage messages require ul and either nroff or mandoc for display
  • automated completion generation from manual pages requires Python (2.7+ or 3.3+) and possibly the backports.lzma module for Python 2.7
  • the fish_config web configuration tool requires Python (2.7+ or 3.3 +) and a web browser
  • system clipboard integration (with the default Ctrl-V and Ctrl-X bindings) require either the xsel, xclip, wl-copy/wl-paste or pbcopy/pbpaste utilities
  • full completions for yarn and npm require the all-the-package-names NPM module

Switching to fish

If you wish to use fish as your default shell, use the following command:

chsh -s /usr/local/bin/fish

chsh will prompt you for your password and change your default shell. (Substitute /usr/local/bin/fish with whatever path fish was installed to, if it differs.) Log out, then log in again for the changes to take effect.

Use the following command if fish isn't already added to /etc/shells to permit fish to be your login shell:

echo /usr/local/bin/fish | sudo tee -a /etc/shells

To switch your default shell back, you can run chsh -s /bin/bash (substituting /bin/bash with /bin/tcsh or /bin/zsh as appropriate).

Building

Dependencies

Compiling fish requires:

  • a C++11 compiler (g++ 4.8 or later, or clang 3.3 or later)
  • CMake (version 3.2 or later)
  • a curses implementation such as ncurses (headers and libraries)
  • PCRE2 (headers and libraries) - a copy is included with fish
  • gettext (headers and libraries) - optional, for translation support

Sphinx is also optionally required to build the documentation from a cloned git repository.

Building from source (all platforms) - Makefile generator

To install into /usr/local, run:

mkdir build; cd build
cmake ..
make
sudo make install

The install directory can be changed using the -DCMAKE_INSTALL_PREFIX parameter for cmake.

Building from source (macOS) - Xcode

mkdir build; cd build
cmake .. -G Xcode

An Xcode project will now be available in the build subdirectory. You can open it with Xcode, or run the following to build and install in /usr/local:

xcodebuild
xcodebuild -scheme install

The install directory can be changed using the -DCMAKE_INSTALL_PREFIX parameter for cmake.

Help, it didn't build!

If fish reports that it could not find curses, try installing a curses development package and build again.

On Debian or Ubuntu you want:

sudo apt-get install build-essential cmake ncurses-dev libncurses5-dev libpcre2-dev gettext

On RedHat, CentOS, or Amazon EC2:

sudo yum install ncurses-devel

Contributing Changes to the Code

See the Guide for Developers.

Contact Us

Questions, comments, rants and raves can be posted to the official fish mailing list at https://lists.sourceforge.net/lists/listinfo/fish-users or join us on our gitter.im channel. Or use the fish tag on Stackoverflow for questions related to fish script and the fish tag on Superuser for all other questions (e.g., customizing colors, changing key bindings).

Found a bug? Have an awesome idea? Please open an issue.