From 0de26732bf806bdae3d33175af39d9ec36e6820f Mon Sep 17 00:00:00 2001 From: Siteshwar Vashisht Date: Mon, 11 Nov 2013 21:14:24 +0530 Subject: [PATCH] Don't show warning while generating man page completions on startup --- share/functions/__fish_config_interactive.fish | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish index 2c9c9c233..202430409 100644 --- a/share/functions/__fish_config_interactive.fish +++ b/share/functions/__fish_config_interactive.fish @@ -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