aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/fish_prompt.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc_src/fish_prompt.txt')
-rw-r--r--doc_src/fish_prompt.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc_src/fish_prompt.txt b/doc_src/fish_prompt.txt
index 53da848e..57cc5c24 100644
--- a/doc_src/fish_prompt.txt
+++ b/doc_src/fish_prompt.txt
@@ -25,7 +25,8 @@ A simple prompt:
\fish
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)
+ printf '%s@%s%s%s%s> ' (whoami) (hostname | cut -d . -f 1) \
+ (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
end
\endfish