summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2018-06-30 19:50:40 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2018-07-03 06:58:51 +0300
commit3a15d0aa9c55881ddc3a21570350a743c28a6c92 (patch)
tree88df579792b42ebabe0959ffae5a105792e3bd0c /etc
parent9b0a755f642542dd96065ad05ec9d844d8077fd7 (diff)
downloadgnu-guix-3a15d0aa9c55881ddc3a21570350a743c28a6c92.tar
gnu-guix-3a15d0aa9c55881ddc3a21570350a743c28a6c92.tar.gz
bash completion: Complete files names after 'guix weather -m'.
* etc/completion/bash/guix (_guix_complete): Complete files names after 'guix weather -m'.
Diffstat (limited to 'etc')
-rw-r--r--etc/completion/bash/guix6
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/completion/bash/guix b/etc/completion/bash/guix
index cc18fbc94d..a593b8112c 100644
--- a/etc/completion/bash/guix
+++ b/etc/completion/bash/guix
@@ -195,6 +195,12 @@ _guix_complete ()
elif _guix_is_command "hash" || _guix_is_command "gc"
then
_guix_complete_file
+ elif _guix_is_command "weather"
+ then
+ if _guix_is_dash_m
+ then
+ _guix_complete_file
+ fi
else
_guix_complete_available_package "$word_at_point"
fi