From fa0563e7fa4effbeb86ad0fb377d1bfe5a4c8bdc Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Dec 2023 01:00:00 +0100 Subject: =?UTF-8?q?bash=20completion:=20Complete=20=E2=80=98guix=20style?= =?UTF-8?q?=20-f=E2=80=99=20with=20files.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * etc/completion/bash/guix (_guix_is_dash_f): Recognise ‘--whole-file’ as a member of the ‘-f’ family. (_guix_complete): Add a new clause for ‘guix style’. Reported by cmiller in #guix. Change-Id: I3f55f7fd7fb8610dc13770ebfe70d9f65c1497af --- etc/completion/bash/guix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/completion/bash/guix b/etc/completion/bash/guix index 7b1f639371..ab441a2540 100644 --- a/etc/completion/bash/guix +++ b/etc/completion/bash/guix @@ -139,7 +139,8 @@ _guix_is_dash_f () { _guix_is_short_option f || _guix_is_long_option file || - _guix_is_long_option install-from-file + _guix_is_long_option install-from-file || + _guix_is_long_option whole-file } _guix_is_dash_l () @@ -333,6 +334,14 @@ _guix_complete () else _guix_complete_available_package "$word_at_point" fi + elif [[ "$command" = "style" ]] + then + if _guix_is_dash_f + then + _guix_complete_file + else + _guix_complete_available_package "$word_at_point" + fi else _guix_complete_available_package "$word_at_point" fi -- cgit v1.2.3