From f71c6f3f0e34c034c3dec54289527a68a136749f Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 23 Feb 2009 05:17:14 +1000 Subject: [PATCH] Misc documentation updates darcs-hash:20090222191714-ac50b-fdd090aafd60f71989ef5c63aac9f876dcad93eb.gz --- doc_src/faq.hdr | 10 +++++----- doc_src/index.hdr.in | 2 ++ doc_src/set_color.txt | 8 +++++++- doc_src/status.txt | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/doc_src/faq.hdr b/doc_src/faq.hdr index 99ad362..d8058ab 100644 --- a/doc_src/faq.hdr +++ b/doc_src/faq.hdr @@ -57,8 +57,8 @@ feature, write set CDPATH . 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 -~. +fastest way to switch to your home directory is to simply press +~ and enter.
@@ -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 which fish 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.
@@ -105,7 +105,7 @@ Quick answer: Run the following command in fish:
-echo function fish_title;end ~/.config/fish/config.fish
+echo 'function fish_title;end' > ~/.config/fish/config.fish
 
Problem solved! diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in index 52ce8de..7890c89 100644 --- a/doc_src/index.hdr.in +++ b/doc_src/index.hdr.in @@ -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 diff --git a/doc_src/set_color.txt b/doc_src/set_color.txt index c40fa94..d6683b7 100644 --- a/doc_src/set_color.txt +++ b/doc_src/set_color.txt @@ -26,5 +26,11 @@ in a grey font color, while set_color --bold white 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. diff --git a/doc_src/status.txt b/doc_src/status.txt index de05b51..846e3e9 100644 --- a/doc_src/status.txt +++ b/doc_src/status.txt @@ -14,5 +14,5 @@ - -f or --current-filename prints the filename of the currently running script - -n or --current-line-number prints the line number of the currently running script - -j CONTROLTYPE or --job-control=CONTROLTYPE set the job control type. Can be one of: none, full, interactive -- -t or --print-stack-trace +- -t or --print-stack-trace prints a stack trace of all function calls on the call stack - -h or --help display a help message and exit