Christopher Nilsson 208be0f4d4 Adding '--rename' option to 'functions' builtin.
Aim is to allow an existing function to be renamed, allowing some basic function chaining.

Example:

> function foo
     echo Hello
  end
> foo
Hello
> functions --rename foo bar
> foo
fish: Unknown command 'foo'
> bar
Hello
> functions --rename fish_prompt old_prompt
> function fish_prompt
      printf "{Boo!}%s" (old_prompt)
  end
{Boo!}>

Note in the last case, the new fish_prompt is calling its old definition.
2010-09-08 03:31:05 +10:00
2009-03-09 00:20:07 +10:00
2008-01-14 02:47:47 +10:00
2009-03-09 00:41:06 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2005-09-20 23:26:39 +10:00
2005-10-25 01:26:25 +10:00
2008-01-14 02:47:47 +10:00
2009-02-25 04:36:01 +10:00
2008-01-14 02:47:47 +10:00
2008-01-14 02:47:47 +10:00
2005-09-20 23:26:39 +10:00
2008-01-14 02:47:47 +10:00
2006-08-10 08:52:30 +10:00
2006-11-11 20:52:08 +10:00
2008-01-14 02:47:47 +10:00
2006-10-10 01:20:07 +10:00
2008-01-14 02:47:47 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00
2005-09-20 23:26:39 +10:00

How to find documentation for fish
==================================

The fish documentation is distributed in an intermediate format. To
view it, you have to type:

  % make user_doc

Which will create the directory user_doc, containing html
documentation for fish. If you build and install fish, the
documentation will be available through the 'help' builtin.

After installation, you can start fish by typing fish in the
terminal. After fish has started, try using the help command for more
information.
Description
The user-friendly command line shell.
Readme 117 MiB
Languages
Rust 71.3%
Shell 19.5%
Python 5.8%
CMake 1.4%
JavaScript 0.5%
Other 1.2%