This commit is contained in:
nmeum 2013-04-13 23:17:19 +02:00 committed by Siteshwar Vashisht
parent 3d7ff9f758
commit 24afe544a3
9 changed files with 12 additions and 12 deletions

View File

@ -22,7 +22,7 @@ If SEQUENCE is the empty string, i.e. an empty set of quotes, this is
interpreted as the default keybinding. It will be used whenever no interpreted as the default keybinding. It will be used whenever no
other binding matches. For most key bindings, it makes sense to use other binding matches. For most key bindings, it makes sense to use
the \c self-insert function (i.e. <tt>bind '' self-insert</tt> as the the \c self-insert function (i.e. <tt>bind '' self-insert</tt> as the
default keybining. This will insert any keystrokes not specifically default keybinding. This will insert any keystrokes not specifically
bound to into the editor. Non-printable characters are ignored by the bound to into the editor. Non-printable characters are ignored by the
editor, so this will not result in e.g. control sequences being editor, so this will not result in e.g. control sequences being
printable. printable.

View File

@ -5,7 +5,7 @@
\subsection contains-description Description \subsection contains-description Description
- \c -i or \c --index print the the word index - \c -i or \c --index print the word index
- \c -h or \c --help display this message - \c -h or \c --help display this message
Test if the set VALUES contains the string KEY. Return status is 0 if Test if the set VALUES contains the string KEY. Return status is 0 if

View File

@ -13,7 +13,7 @@ Most tradeoffs between power and ease of use can be avoided with careful design.
-# Whenever possible without breaking the above goals, fish should -# Whenever possible without breaking the above goals, fish should
follow the Posix syntax. follow the Posix syntax.
To achive these high-level goals, the fish design relies on a number To achieve these high-level goals, the fish design relies on a number
of more specific design principles. These are presented below, of more specific design principles. These are presented below,
together with a rationale and a few examples for each. together with a rationale and a few examples for each.
@ -33,7 +33,7 @@ program harder to maintain and update.
Examples: Examples:
- Here documents are too similar to using echo inside of a pipeline. - Here documents are too similar to using echo inside of a pipeline.
- Subshells, command substitution and process substitution are strongly related. \c fish only supports command substitution, the others can be achived either using a block or the psub shellscript function. - Subshells, command substitution and process substitution are strongly related. \c fish only supports command substitution, the others can be achieved either using a block or the psub shellscript function.
- Having both aliases and functions is confusing, especially since both of them have limitations and problems. \c fish functions have none of the drawbacks of either syntax. - Having both aliases and functions is confusing, especially since both of them have limitations and problems. \c fish functions have none of the drawbacks of either syntax.
- The many Posix quoting styles are silly, especially \$''. - The many Posix quoting styles are silly, especially \$''.

View File

@ -28,7 +28,7 @@ Writing <code>cd images; ls ..</code> given the above directory
structure would list the contents of ~/Documents, not of ~, even structure would list the contents of ~/Documents, not of ~, even
though using <code>cd ..</code> changes the current directory to ~, though using <code>cd ..</code> changes the current directory to ~,
and the prompt, the pwd builtin and many other directory information and the prompt, the pwd builtin and many other directory information
sources suggest that the the current directory is ~/images and it's sources suggest that the current directory is ~/images and it's
parent is ~. This issue is not possible to fix without either making parent is ~. This issue is not possible to fix without either making
every single command into a builtin, breaking Unix semantics or every single command into a builtin, breaking Unix semantics or
implementing kludges in every single command. implementing kludges in every single command.
@ -93,7 +93,7 @@ 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 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.
Unfortunatly, there is no way to make the changes take effect at once, Unfortunately, there is no way to make the changes take effect at once,
you will need to log out and back in again. you will need to log out and back in again.
<hr> <hr>
@ -114,7 +114,7 @@ The long answer:
Fish is trying to set the titlebar message of your terminal. While Fish is trying to set the titlebar message of your terminal. While
screen itself supports this feature, your terminal does screen itself supports this feature, your terminal does
not. Unfortuntaly, when the underlying terminal doesn't support not. Unfortunately, when the underlying terminal doesn't support
setting the titlebar, screen simply passes through the escape codes setting the titlebar, screen simply passes through the escape codes
and text to the underlying terminal instead of ignoring them. It is and text to the underlying terminal instead of ignoring them. It is
impossible detect and resolve this problem from inside fish since fish impossible detect and resolve this problem from inside fish since fish

View File

@ -1,4 +1,4 @@
\section fish_prompt fish_prompt - define the apperance of the command line prompt \section fish_prompt fish_prompt - define the appearance of the command line prompt
\subsection fish_prompt-synopsis Synopsis \subsection fish_prompt-synopsis Synopsis
<pre>function fish_prompt <pre>function fish_prompt

View File

@ -1,4 +1,4 @@
\section fish_right_prompt fish_right_prompt - define the apperance of the right-side command line prompt \section fish_right_prompt fish_right_prompt - define the appearance of the right-side command line prompt
\subsection fish_right_prompt-synopsis Synopsis \subsection fish_right_prompt-synopsis Synopsis
<pre>function fish_right_prompt <pre>function fish_right_prompt

View File

@ -5,5 +5,5 @@
\subsection pushd-description Description \subsection pushd-description Description
The <tt>pushd</tt> function adds DIRECTORY to the top of the directory stack The <tt>pushd</tt> function adds DIRECTORY to the top of the directory stack
and makes it the current directory. Use <tt>popd</tt> to pop it off and and and makes it the current directory. Use <tt>popd</tt> to pop it off and
return to the original directory. return to the original directory.

View File

@ -9,7 +9,7 @@ Tests the expression given and returns true or false.
- \c -h, \c Display this help - \c -h, \c Display this help
- \c -G, \c File owned by effective group ID - \c -G, \c File owned by effective group ID
- \c -L, \c File is syslink - \c -L, \c File is symlink
- \c -O, \c File owned by effective user ID - \c -O, \c File owned by effective user ID
- \c -S, \c File is socket - \c -S, \c File is socket
- \c -a, \c Logical and - \c -a, \c Logical and

View File

@ -297,7 +297,7 @@ static char *file_exists(const char *dir, const char *in)
from xdg_run_command_on_dirs. from xdg_run_command_on_dirs.
\param list Full file paths will be appended to this list. \param list Full file paths will be appended to this list.
\param f The relative filename search for the the data directories. \param f The relative filename search for the data directories.
\param all If zero, then stop after the first filename. \param all If zero, then stop after the first filename.
\return The number of filenames added to the list. \return The number of filenames added to the list.
*/ */