diff options
author | Wim de With <wf@dewith.io> | 2023-06-08 16:58:38 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2023-09-20 20:21:50 +0200 |
commit | 12b61965b5f78f95109ad9f67199c43e3c90693a (patch) | |
tree | 6f5da58d6a1c651e38134623a33d023b18e6d1ce | |
parent | d92b1a3547e4d7e602316e12f0a896356579c1ab (diff) | |
download | zsh-12b61965b5f78f95109ad9f67199c43e3c90693a.tar.gz zsh-12b61965b5f78f95109ad9f67199c43e3c90693a.zip |
51857: Include fusermount3 in fusermount completions
fusermount3 is part of libfuse version 3, while fusermount is part of
libfuse version 2. Since they share the exact same command line
interface, we can reuse the completions.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Linux/Command/_fusermount | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2023-09-20 Oliver Kiddle <opk@zsh.org> + * Wim de With: 51857: Completion/Linux/Command/_fusermount: + Include fusermount3 in fusermount completions + * Atte Peltomäki: 51980: Completion/Zsh/Type/_globquals, Doc/Zsh/expn.yo: Add glob qualifier grouping operator to completion diff --git a/Completion/Linux/Command/_fusermount b/Completion/Linux/Command/_fusermount index d55eca29c..24f9a8018 100644 --- a/Completion/Linux/Command/_fusermount +++ b/Completion/Linux/Command/_fusermount @@ -1,4 +1,4 @@ -#compdef fusermount +#compdef fusermount fusermount3 local expl context state line typeset -A opt_args |