aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/fish_prompt.txt
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-03-25 08:21:35 +1000
committerGravatar axel <axel@liljencrantz.se>2007-03-25 08:21:35 +1000
commite8ba091161277b397221c782b729f8d97b187de7 (patch)
tree76746e00cb33d7f6c865878a31950e9553b1b605 /doc_src/fish_prompt.txt
parent65d99117aa535789584fd72a89c18eb717765103 (diff)
Move documentation on fish_prompt to the external command section
darcs-hash:20070324222135-ac50b-0b27258486492ea6178a852061dc894da60140ee.gz
Diffstat (limited to 'doc_src/fish_prompt.txt')
-rw-r--r--doc_src/fish_prompt.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc_src/fish_prompt.txt b/doc_src/fish_prompt.txt
new file mode 100644
index 00000000..dda80913
--- /dev/null
+++ b/doc_src/fish_prompt.txt
@@ -0,0 +1,23 @@
+\section fish_prompt fish_prompt - define the apperance of the command line promp
+
+\subsection fish_promt-synopsis Synopsis
+<pre>function fish_prompt
+ ...
+end</pre>
+
+\subsection fish_prompt-description Description
+
+By defining the \c fish_prompt function, the user can choose a custom
+prompt. The \c fish_prompt function is executed when the prompt is to
+be shown, and the output is used as a prompt.
+
+\subsection fish_prompt-example Example
+
+A simple prompt:
+
+<pre>
+function fish_prompt -d "Write out the prompt"
+ printf '\%s\@\%s\%s\%s\%s> ' (whoami) (hostname|cut -d . -f 1) (set_color \$fish_color_cwd) (prompt_pwd) (set_color normal)
+end
+</pre>
+