Minor documentation updates

darcs-hash:20050923143316-ac50b-a3816568b7aefca179ef2891d1fd2fb23a1739cb.gz
This commit is contained in:
axel 2005-09-24 00:33:16 +10:00
parent 77c7a026ee
commit 5f546e1c4c
4 changed files with 31 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2005-09-23 Axel Liljencrantz <axel@liljencrantz.se>
* reader.c (set_signal_handlers): Ignore SIG_PIPE, generated by fishd socket
* exec.c (exec_read_io_buffer): Do not block, since SIG_PIPE seems to mess up EOF status on pipes
2005-09-22 Axel Liljencrantz <axel@liljencrantz.se>
* env_universal.c, env_universal_common.c, env.c, fishd.c, builtin_set.c, exec.c, init/fish_interactive.fish: Exportable universal variables

View file

@ -602,6 +602,7 @@ builtins or shellscript functions, and can only be used inside fish.
- <a href="builtins.html#exec">exec</a>, to replace the current process image with a new command
- <a href="builtins.html#exit">exit</a>, causes \c fish to quit
- <a href="builtins.html#fg">fg</a>, to set a command to the foreground
- <a href="commands.html#fishd">fishd</a>, the universal variable daemon
- <a href="builtins.html#for">for</a>, to perform a block of commands once for every element in a list
- <a href="builtins.html#function">function</a>, to define a new function
- <a href="builtins.html#functions">functions</a>, to print or erase functions
@ -743,14 +744,15 @@ If you want to run a set of commands when \c fish exits, redefine the
fish_on_exit is defined, it will be execute before the shell exits.
<a href="#variables-universal">Universal variables</a> are stored in
the file .fishd. Do not edit this file directly, edit them through
fish scripts instead.
the file .fishd.HOSTNAME, where HOSTNAME is the name of your
computer. Do not edit this file directly, edit them through fish
scripts or by using fish interactively instead.
\section other Other features
\subsection color Syntax highlighting
\c fish will interprets the command line as it is typed and uses syntax
\c fish interprets the command line as it is typed and uses syntax
highlighting to provide feedback to the user. The most important
feedback is the detection of potential errors. By default, errors are
marked red.

19
doc_src/fishd.txt Normal file
View file

@ -0,0 +1,19 @@
\section fishd fishd - Universal variable daemon
\subsection fishd-synopsis Synopsis
<tt>fishd [SECTION]</tt>
\subsection fishd-description Description
The \c fishd daemon is used to load, save and distribute universal
variable information. fish automtically connects to fishd via a socket
on startup. If no instance of fishd is running, fish spawns a new
fishd instance. fishd will create a socket in /tmp, and wait for
incoming connections from universal variable clents, such as fish,
When no clients are connected, fishd will automatically shut down.
\subecion fishd-files Files
~/.fishd permenent storage location for universal variale data

View file

@ -242,7 +242,6 @@ void load_or_save( int save)
{
debug( 1, L"Could not open load/save file. No previous saves?" );
wperror( L"open" );
}
debug( 1, L"File open on fd %d", c.fd );