mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
doc: faq: avoid overwriting config.fish.
In FAQ: > I'm seeing weird output before each prompt when using screen. What's wrong? The command provided is echo 'function fish_title;end' > ~/.config/fish/config.fish Using `>` will overwrite current config.fish. We should use `>>` instead.
This commit is contained in:
parent
9b5026f7e5
commit
cec1dc2095
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ Quick answer:
|
|||
Run the following command in fish:
|
||||
|
||||
\fish{cli-dark}
|
||||
echo 'function fish_title;end' > ~/.config/fish/config.fish
|
||||
echo 'function fish_title;end' >> ~/.config/fish/config.fish
|
||||
\endfish
|
||||
|
||||
Problem solved!
|
||||
|
|
Loading…
Reference in a new issue