guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: bash completion: Complete ‘guix style -f’ with files.


From: guix-commits
Subject: 06/06: bash completion: Complete ‘guix style -f’ with files.
Date: Fri, 15 Dec 2023 18:03:50 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit fa0563e7fa4effbeb86ad0fb377d1bfe5a4c8bdc
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Dec 10 01:00:00 2023 +0100

    bash completion: Complete ‘guix style -f’ with files.
    
    * 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(-)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]