From 9121e14279c77a99faf77e667200ed78eda0d00b Mon Sep 17 00:00:00 2001 From: NextAlone <12210746+NextAlone@users.noreply.github.com> Date: Sun, 30 Jan 2022 00:35:32 +0800 Subject: [PATCH] Add ln completion -r --relative --- share/completions/ln.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/ln.fish b/share/completions/ln.fish index a8c79e1dc..7ad0e483a 100644 --- a/share/completions/ln.fish +++ b/share/completions/ln.fish @@ -11,6 +11,7 @@ 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'