bash completion: Complete files names after 'guix build -L'.
* etc/completion/bash/guix (_guix_complete): Complete files names after 'guix build -L'.
This commit is contained in:
parent
6104f922ee
commit
9b0a755f64
|
@ -167,6 +167,12 @@ _guix_complete ()
|
||||||
else
|
else
|
||||||
_guix_complete_available_package "$word_at_point"
|
_guix_complete_available_package "$word_at_point"
|
||||||
fi
|
fi
|
||||||
|
elif _guix_is_command "build"
|
||||||
|
then
|
||||||
|
if _guix_is_dash_L
|
||||||
|
then
|
||||||
|
_guix_complete_file
|
||||||
|
fi
|
||||||
elif _guix_is_command "download"
|
elif _guix_is_command "download"
|
||||||
then
|
then
|
||||||
_guix_complete_file
|
_guix_complete_file
|
||||||
|
|
Loading…
Reference in New Issue