No description
Find a file
2007-03-24 20:56:29 +10:00
doc_src Various minor codee updates. Dead code removal, comment tweaking. Spelling fixes, etc. 2007-02-25 21:17:38 +10:00
etc First stab at directory transition. Test with care... 2006-10-19 21:50:23 +10:00
po Updates to the swedish translation 2007-01-10 00:13:10 +10:00
share Do not use makefile to generate vcs completions, do it directly in the script. Also add some minor updates to the vcs completions. 2007-02-24 22:59:27 +10:00
tests Do not test universal variable functionality since it relies on fish to be installed 2006-07-19 03:37:11 +10:00
builtin.c Add breakpoint builtin 2006-11-11 20:54:00 +10:00
builtin.h Fix occasional duplicate stack trace, reported by Mike Roberts. Also make fish less likely to print huge amounts of help in non-interactive mode, as per suggestion from Mike Roberts. 2007-02-01 02:03:17 +10:00
builtin_commandline.c Make all error messages from options parsin in builtins redirectable 2007-01-22 00:55:27 +10:00
builtin_complete.c Initial checkin of code for using case insensitive completion as a fallback for regular completion. Some types of completions don't yet support the feature. 2007-03-01 07:43:27 +10:00
builtin_jobs.c Fix occasional duplicate stack trace, reported by Mike Roberts. Also make fish less likely to print huge amounts of help in non-interactive mode, as per suggestion from Mike Roberts. 2007-02-01 02:03:17 +10:00
builtin_set.c Fix occasional duplicate stack trace, reported by Mike Roberts. Also make fish less likely to print huge amounts of help in non-interactive mode, as per suggestion from Mike Roberts. 2007-02-01 02:03:17 +10:00
builtin_ulimit.c Make all error messages from options parsin in builtins redirectable 2007-01-22 00:55:27 +10:00
common.c Do not call getc if getwc fails - mixing wide and byte-based readin may cause a crash. IT's better to simply hope that getwc can recover. 2007-01-27 12:10:26 +10:00
common.h Print stack trace when execting due to fatal problem or bug 2007-01-22 01:03:41 +10:00
complete.c Fix performance bug in command description lookup - it was performed once for every element in PATH. Thanks to Tassilo Horn for the bug report. 2007-03-18 08:56:11 +10:00
complete.h Initial checkin of code for using case insensitive completion as a fallback for regular completion. Some types of completions don't yet support the feature. 2007-03-01 07:43:27 +10:00
config.guess Update to latest config.sub and config.guess versions 2006-03-02 02:28:21 +10:00
config.sub Update to latest config.sub and config.guess versions 2006-03-02 02:28:21 +10:00
configure.ac Use per-binary LDFLAGS to remove linking to useless libraries. This will reduce the size of the binaries and may also speed up startup time slightly. These changes are based on suggestions and a patch by James Vega. 2007-03-24 20:56:29 +10:00
count.c Rearrange includes so that config.h is always the first file to be included 2006-08-11 11:18:35 +10:00
create_wajig_completions.py Add the file that generated the wajig completions to the tree. This should not be installed but it should be included with the tarball. The file was written by Reuben Thomas. 2006-11-04 00:26:45 +10:00
Doxyfile Initial revision 2005-09-20 23:26:39 +10:00
Doxyfile.help.in Fix missing man-page generation when building from darcs tree. Also simplifys doc generation a small bit. 2006-11-20 23:53:36 +10:00
Doxyfile.user Include user documentation with standard tarballs - this means you no longer need Doxygen to build fish, and should make life easier for packagers 2006-06-12 21:07:43 +10:00
env.c Add support for using __environ instead of environ, if it exists and environ isn't set 2007-01-28 02:59:11 +10:00
env.h Minor edits, remove unneeded code, add a few commants, correct spelling, tweak the todo list, etc. 2006-10-26 20:22:53 +10:00
env_universal.c Make fish store universal variables locally if fishd can't be started - local changes are lost of the fishd connection is restored 2006-11-15 22:34:47 +10:00
env_universal.h Minor comment edits and removal of a warning 2006-11-19 07:24:59 +10:00
env_universal_common.c Make fish store universal variables locally if fishd can't be started - local changes are lost of the fishd connection is restored 2006-11-15 22:34:47 +10:00
env_universal_common.h Make fish store universal variables locally if fishd can't be started - local changes are lost of the fishd connection is restored 2006-11-15 22:34:47 +10:00
event.c Make sure fish has the currect exit status 2006-11-02 23:48:59 +10:00
event.h Remove superflous event_signal_listen function, replace all calls to it with event_get 2006-05-15 08:27:58 +10:00
exec.c Do not use stdout to report errors when stderr is dead - take the hint instead... 2007-01-22 01:22:42 +10:00
exec.h Add compiler warnings for some common incorrect usage of functions, such as forgetting to cast null pointers to variadic functions 2006-10-20 01:19:47 +10:00
expand.c Fifth phase of using a real struct for passing around completions - make expand.c and wildcard.c use the struct internally. This makes all completion code use the new struct. 2007-02-24 18:11:31 +10:00
expand.h Add compiler warnings for some common incorrect usage of functions, such as forgetting to cast null pointers to variadic functions 2006-10-20 01:19:47 +10:00
fallback.c Add support for using __environ instead of environ, if it exists and environ isn't set 2007-01-28 02:59:11 +10:00
fallback.h Minor code fixes 2006-10-20 01:39:50 +10:00
fish.spec.in Add chengelog entry to spec file for fish 2007-02-09 03:00:32 +10:00
fish_pager.c Fix accidentally triggering of error condition when nothing bad happened in fish pager init code 2007-01-09 09:03:38 +10:00
fish_tests.c Fix warning messages in fish_tests 2006-10-22 08:59:00 +10:00
fishd.c Update documentation display code to run roff on the client system instead of pregenerating documentation and compiling it into program binaries 2006-11-18 02:24:38 +10:00
function.c Use halloc to simplyfy allocations in function.c 2006-11-16 00:16:49 +10:00
function.h Use halloc to simplyfy allocations in function.c 2006-11-16 00:16:49 +10:00
halloc.c Handle out of memory condition in various parts of fish by shutting down instead of crashing 2007-01-09 12:51:02 +10:00
halloc.h Minor edits, remove unneeded code, add a few commants, correct spelling, tweak the todo list, etc. 2006-10-26 20:22:53 +10:00
halloc_util.c Make halloc-based list allocation work without context 2007-02-24 23:19:32 +10:00
halloc_util.h Use halloc in a few more places, including the highlight code 2006-06-13 00:12:33 +10:00
highlight.c Minor highlighting tweaks to make highlighter handle switches to 'command' and 'builtin' builtins more correctly 2006-12-14 23:40:25 +10:00
highlight.h Large number of sourcecode comment edits, and some minor code polish 2006-06-20 10:50:10 +10:00
history.c Do not purge internal history if saving history to file fails 2007-01-20 12:33:47 +10:00
history.h Rewritten history implementation - uses mmap to save lots of memory and also allows incremental saving. The history is autosaved every five minutes and every five added entries 2006-10-21 08:36:49 +10:00
input.c Fix typo in user message, remove a few warnings, minor indentation edits 2007-01-09 12:53:56 +10:00
input.h Make sure cwd colors update when the variable changes. This is a common regression, it seems. This time it was caused by the repaint reductions added in 1.22.2. 2006-12-12 20:13:48 +10:00
input_common.c After processing a signal/event while waiting for commandline input, check the lookahead buffer for inserted characters 2006-11-19 07:15:31 +10:00
input_common.h Fix the longstanding hang-on-exit bug in eterm, as well as making sure the history is saved when the terminal emulator exits 2006-05-14 20:16:23 +10:00
INSTALL Add mention of uninstalling old fish versions to the INSTALL file. Thanks to Jason Grossman for the suggestion 2006-11-04 00:12:54 +10:00
install-sh Initial revision 2005-09-20 23:26:39 +10:00
intern.c Minor cleanups, mostly of code comments 2006-11-11 20:54:52 +10:00
intern.h Huge API documentation cleanup 2005-10-25 01:26:25 +10:00
io.c Fix file descriptor leakage from completion pager 2006-11-12 22:16:13 +10:00
io.h Make it possible to buffer input to other file descriptors than stdin. It is still only possible to buffer input on a single descriptor to any given job. 2007-01-08 00:10:52 +10:00
key_reader.c Minor edits of function descriptions, includes, etc. 2006-05-03 02:29:50 +10:00
kill.c Fix a number of bugs found using the warnings generated by earlier patch 2006-10-20 01:36:03 +10:00
kill.h Fix the kill-line, backward-kill-line and kill-whole-line commands to work correctly with multiline editing 2006-10-12 23:27:32 +10:00
main.c Add support for backtraces - if the compiler and libc version supports it (probably only glibc/gcc) then a stack trace is printed on serious bugs 2007-01-20 12:36:49 +10:00
make_completions.py Make first stab at a manual page parser. It takes the name of a command as input and outputs completions for it. 2007-01-25 11:27:28 +10:00
make_vcs_completions.fish Do not use makefile to generate vcs completions, do it directly in the script. Also add some minor updates to the vcs completions. 2007-02-24 22:59:27 +10:00
Makefile.in Use per-binary LDFLAGS to remove linking to useless libraries. This will reduce the size of the binaries and may also speed up startup time slightly. These changes are based on suggestions and a patch by James Vega. 2007-03-24 20:56:29 +10:00
mimedb.c Add --without-gettext switch to optionally disable gettext support 2006-11-30 00:18:22 +10:00
mimedb.h Add header guards to the header files. 2005-10-05 01:11:39 +10:00
output.c Use MB_LEN_MAX instead of MB_CUR_MAX as the length of an array, since the latter does not need to be a constant value, meaning it is illegal as an array size 2007-01-23 02:51:25 +10:00
output.h Minor edits - add a few input checks, remove a few commented pieces of debug code, add a few brackets, etc. 2007-01-16 03:51:44 +10:00
parse_util.c Fix crash in tab completion code when completing an imcomplete backsalsh escape 2007-01-27 03:14:13 +10:00
parse_util.h Make the callback for the file autoloader optional, and clarify its use 2006-10-19 21:46:32 +10:00
parser.c Add breakpoint builtin 2006-11-11 20:54:00 +10:00
parser.h Add breakpoint builtin 2006-11-11 20:54:00 +10:00
path.c First stab at directory transition. Test with care... 2006-10-19 21:50:23 +10:00
path.h First stab at directory transition. Test with care... 2006-10-19 21:50:23 +10:00
print_help.c Update documentation display code to run roff on the client system instead of pregenerating documentation and compiling it into program binaries 2006-11-18 02:24:38 +10:00
print_help.h Update documentation display code to run roff on the client system instead of pregenerating documentation and compiling it into program binaries 2006-11-18 02:24:38 +10:00
proc.c Minor code edit - move a bit of code into its own function 2006-11-20 23:12:24 +10:00
proc.h Make it possible to buffer input to other file descriptors than stdin. It is still only possible to buffer input on a single descriptor to any given job. 2007-01-08 00:10:52 +10:00
reader.c Add a blacklist of console types that are known not to support terminal titles, even when in a virtual terminal 2007-03-18 09:38:46 +10:00
reader.h Add support for -s switch to read builtin, enables shell syntax highlighting in the read builtin 2007-01-30 02:26:24 +10:00
README Initial revision 2005-09-20 23:26:39 +10:00
sanity.c Rearrange includes so that config.h is always the first file to be included 2006-08-11 11:18:35 +10:00
sanity.h Add header guards to the header files. 2005-10-05 01:11:39 +10:00
screen.c When clearing a line in the screen handler, also make sure that the internal state reflects this. This helps avoid issues with wiping out parts of the prompt 2007-01-30 03:43:58 +10:00
screen.h Make the screen repainting code slightly more robust by keeping track of whether clr_eol may be needed to clear 'debris' from e.g. resizes 2006-10-09 23:26:42 +10:00
seq.in Fix typo in seq.in 2006-08-10 08:52:30 +10:00
set_color.c A few more error checks during string to integer conversion in various places 2007-01-09 23:41:17 +10:00
signal.c Print stack trace when execting due to fatal problem or bug 2007-01-22 01:03:41 +10:00
signal.h Make sure signals aren't blocked while autoloading, also add a few consistency checks to see that signals aren't blocked in critical places 2006-10-30 07:09:11 +10:00
tokenizer.c Fix crash in tab completion code when completing an imcomplete backsalsh escape 2007-01-27 03:14:13 +10:00
tokenizer.h Add autoindentation support 2006-10-07 10:56:25 +10:00
user_doc.head.html Documentation updates 2006-11-11 20:52:08 +10:00
util.c Add a one-item cache into the hash table. This reduces the number of hash computations by roughly 20% 2007-01-17 02:37:07 +10:00
util.h Add a one-item cache into the hash table. This reduces the number of hash computations by roughly 20% 2007-01-17 02:37:07 +10:00
wgetopt.c Add --without-gettext switch to optionally disable gettext support 2006-11-30 00:18:22 +10:00
wgetopt.h Apdate address of fish homepage 2006-10-10 01:20:07 +10:00
wildcard.c Initial checkin of code for using case insensitive completion as a fallback for regular completion. Some types of completions don't yet support the feature. 2007-03-01 07:43:27 +10:00
wildcard.h Round of bug fixes and minor code improvements after the completions struct update. Moves the file description code to wildcard.c, where it was actually used. Simplifies the memory allocations in that code significantly. Makes sure directoriy names don't get a space inserted after the completion. 2007-02-25 19:05:24 +10:00
wutil.c Decrease number of gettext messages that are buffered to save memory 2006-10-21 08:34:40 +10:00
wutil.h Add wrename wrapper around rename function 2006-10-21 08:33:47 +10:00
xdgmime.c Initial revision 2005-09-20 23:26:39 +10:00
xdgmime.h Initial revision 2005-09-20 23:26:39 +10:00
xdgmimealias.c Initial revision 2005-09-20 23:26:39 +10:00
xdgmimealias.h Initial revision 2005-09-20 23:26:39 +10:00
xdgmimeglob.c Initial revision 2005-09-20 23:26:39 +10:00
xdgmimeglob.h Initial revision 2005-09-20 23:26:39 +10:00
xdgmimeint.c Use char instead of unsigned char in xdgmime files. Avoids a few warnings. 2005-12-12 08:28:33 +10:00
xdgmimeint.h Initial revision 2005-09-20 23:26:39 +10:00
xdgmimemagic.c Use char instead of unsigned char in xdgmime files. Avoids a few warnings. 2005-12-12 08:28:33 +10:00
xdgmimemagic.h Initial revision 2005-09-20 23:26:39 +10:00
xdgmimeparent.c Initial revision 2005-09-20 23:26:39 +10:00
xdgmimeparent.h Initial revision 2005-09-20 23:26:39 +10:00
xsel-0.9.6.tar Initial revision 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.