From cf59ef143583ca6076de20195b594fdea67a64e4 Mon Sep 17 00:00:00 2001 From: EmilySeville7cfg Date: Fri, 26 Nov 2021 19:00:59 +1000 Subject: [PATCH] Fix setx completion: - more accurate hints for /s, /u, /p opts --- share/completions/setx.fish | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/share/completions/setx.fish b/share/completions/setx.fish index fb5fd20c4..c98e1e373 100644 --- a/share/completions/setx.fish +++ b/share/completions/setx.fish @@ -6,6 +6,14 @@ function __setx_generate_args --description 'Function to generate args' return end + if __fish_seen_argument --windows 's' + echo -e '/u\tRun the script with the credentials of the specified user account' + end + + if __fish_seen_argument --windows 'u' + echo -e '/p\tSpecify the password of the user account that is specified in the /u parameter' + end + if not __fish_seen_argument --windows 'a' --windows 'r' --windows 'x' echo -e '/a\tSpecify absolute coordinates and offset as search parameters /r\tSpecify relative coordinates and offset from String as search parameters @@ -17,8 +25,6 @@ function __setx_generate_args --description 'Function to generate args' end echo -e '/s\tSpecify the name or IP address of a remote computer -/u\tRun the script with the credentials of the specified user account -/p\tSpecify the password of the user account that is specified in the /u parameter /k\tSpecify that the variable is set based on information from a registry key /f\tSpecify the file that you want to use /d\tSpecify delimiters to be used in addition to the four built-in delimiters