From 63960f646b44c43da986838cdd9fd310d48a585a Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 30 Jan 2022 14:59:55 +0100 Subject: [PATCH] completions/ln: sort flags to match the GNU ln man page --- share/completions/ln.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/completions/ln.fish b/share/completions/ln.fish index 7ad0e483a..806346ba9 100644 --- a/share/completions/ln.fish +++ b/share/completions/ln.fish @@ -1,4 +1,3 @@ -complete -c ln -s s -l symbolic -d 'Make symbolic links instead of hard links' complete -c ln -l backup -d 'Make a backup of each existing destination file' -a "none off numbered t existing nil simple never" complete -c ln -s b -d 'Make a backup of each existing destination file' complete -c ln -s d -l directory -d 'Allow superuser to attempt to hard link directories' @@ -7,11 +6,12 @@ complete -c ln -s i -l interactive -d 'Prompt whether to remove destinations' complete -c ln -s L -l logical -d 'Dereference TARGETs that are symbolic links' complete -c ln -s n -l no-dereference -d 'Treat symlink to directory as if it were a file' complete -c ln -s P -l physical -d 'Make hard links directly to symbolic links' +complete -c ln -s r -l relative -d 'With -s, create links relative to link location' +complete -c ln -s s -l symbolic -d 'Make symbolic links instead of hard links' complete -c ln -s S -l suffix -d 'Override the usual ~ backup suffix' complete -c ln -s t -l target-directory -d 'Specify the DIRECTORY in which to create the links' -a '(__fish_complete_directories)' complete -c ln -s T -l no-target-directory -d 'Treat LINK_NAME as a normal file' complete -c ln -s v -l verbose -d 'Print name of each linked file' -complete -c ln -s r -l relative -d 'With -s, create links relative to link location' complete -c ln -f -l help -d 'Display help and exit' complete -c ln -f -l version -d 'Output version information and exit'