From b46417c77bf21a9f9badfea7f854e376f018177f Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Thu, 21 Nov 2024 08:55:45 +0100 Subject: [PATCH] Fix broken completions for "mount -ouid=" Regressed in 2e55e34544 (Reformat, 2020-11-22). --- share/functions/__fish_complete_mount_opts.fish | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/share/functions/__fish_complete_mount_opts.fish b/share/functions/__fish_complete_mount_opts.fish index 21be69d2b..f32a93137 100644 --- a/share/functions/__fish_complete_mount_opts.fish +++ b/share/functions/__fish_complete_mount_opts.fish @@ -134,8 +134,9 @@ function __fish_complete_mount_opts data_err={ignore,abort} \ barrier={0,1} \ user_xattr \ - acl \ - set -l token (commandline -tc | string replace -r '^-o' -- '') + acl + + set -l token (commandline -tc | string replace -r '^-o' -- '') set -l args (string split , -- $token) if test (count $args) -ne 0