mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 05:28:49 +00:00
Don't show warning while generating man page completions on startup
This commit is contained in:
parent
0f02997bcc
commit
0de26732bf
1 changed files with 4 additions and 1 deletions
|
@ -137,8 +137,11 @@ function __fish_config_interactive -d "Initializations that should be performed
|
|||
|
||||
end
|
||||
|
||||
#
|
||||
# Generate man page completions if not present
|
||||
#
|
||||
|
||||
if not test -d $configdir/fish/generated_completions
|
||||
echo "Man page completions not found on your system. Running 'fish_update_completions' in background. You can continue to use fish while the process is being done."
|
||||
#fish_update_completions is a function, so it can not be directly run in background.
|
||||
fish -c 'fish_update_completions > /dev/null ^/dev/null' &
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue