Update user documentation - add section on internal completion functions, update todo list, minor documentation tweaks

darcs-hash:20061206000810-ac50b-08f12efdb74224abe46301d3722cd8180d8ba37d.gz
This commit is contained in:
axel
2006-12-06 10:08:10 +10:00
parent 4b9dcf1cf2
commit d9ec65da4d
2 changed files with 88 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
\section alias alias - create a function
\subsection alias-synopsis Synopsis
<tt>alias NAME DEFINITION</tt><br/>
<tt>alias NAME=DEFINITION</tt>
<pre>alias NAME DEFINITION
alias NAME=DEFINITION</pre>
\subsection alias-description Description
@@ -11,5 +11,8 @@ It exists for backwards compatibility with Posix
shells. For other uses, it is recommended to define a <a
href='#function'>function</a>.
Alias does not keep track of which functions have been defined using
alias, nor does it allow erasing of aliases.
- NAME is the name of the function to define
- DEFINITION is the body of the function. The string " $argv" will be appended to the body.