Skip to content

Commit

Permalink
Misc documentation updates
Browse files Browse the repository at this point in the history
darcs-hash:20090222191714-ac50b-fdd090aafd60f71989ef5c63aac9f876dcad93eb.gz
  • Loading branch information
liljencrantz committed Feb 22, 2009
1 parent 6dbb9e0 commit f71c6f3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
10 changes: 5 additions & 5 deletions doc_src/faq.hdr
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ feature, write <code>set CDPATH .</code> on the commandline.
If fish is unable to locate a command with a given name, fish will
test if a directory of that name exists. If it does, it is implicitly
assumed that you want to change working directory. For example, the
fastest way to switch to your home directory is to simply type
<code>~</code>.
fastest way to switch to your home directory is to simply press
<code>~</code> and enter.

<hr>

Expand Down Expand Up @@ -93,8 +93,8 @@ In order to change your default shell, type:

You may need to adjust the above path to e.g. /usr/bin/fish. Use the command <code>which fish</code> if you are unsure of where fish is installed.

You will need to log out and back in again for the change to take
effect.
Unfortunatly, there is no way to make the changes take effect at once,
you will need to log out and back in again.

<hr>

Expand All @@ -105,7 +105,7 @@ Quick answer:
Run the following command in fish:

<pre>
echo function fish_title;end ~/.config/fish/config.fish
echo 'function fish_title;end' &gt; ~/.config/fish/config.fish
</pre>

Problem solved!
Expand Down
2 changes: 2 additions & 0 deletions doc_src/index.hdr.in
Original file line number Diff line number Diff line change
Expand Up @@ -1419,6 +1419,8 @@ g++, javac, java, gcj, lpr, doxygen, whois)
- Don't use expand_string to perform completions. wildcard_complete can be called directly, the brace expansion handling should be universal, and the process expansion can be moved to complete.c.
- Make the history search support incremental searching
- An automatic logout feature
- Make tab completions completely silent by default, i.e. kill stderr when running completion commands. This needs to be overridalbe for debugging purposes.
- Move history to an environment variable

\subsection bugs Known bugs and issues

Expand Down
8 changes: 7 additions & 1 deletion doc_src/set_color.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,11 @@ in a grey font color, while <code>set_color --bold white</code> will
result in a white font color.

Not all terminal emulators support all these features. This is not a
bug in set_color but a missing feature in the terminal emulator.
bug in set_color but a missing feature in the terminal emulator.

set_color uses the terminfo database to look up how to change terminal
colors on whatever terminal is in use. Some systems have old and
incomplete terminfo databases, and may lack color information for
terminals that support it. Download and install the latest version of
ncurses and recompile fish against it in order to fix this issue.

2 changes: 1 addition & 1 deletion doc_src/status.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
- <tt>-f</tt> or <tt>--current-filename</tt> prints the filename of the currently running script
- <tt>-n</tt> or <tt>--current-line-number</tt> prints the line number of the currently running script
- <tt>-j CONTROLTYPE</tt> or <tt>--job-control=CONTROLTYPE</tt> set the job control type. Can be one of: none, full, interactive
- <tt>-t</tt> or <tt>--print-stack-trace</tt>
- <tt>-t</tt> or <tt>--print-stack-trace</tt> prints a stack trace of all function calls on the call stack
- <tt>-h</tt> or <tt>--help</tt> display a help message and exit

0 comments on commit f71c6f3

Please sign in to comment.