mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:05:39 +08:00
Enhance setx completion:
- more accurate hints
This commit is contained in:
parent
05ba662dcd
commit
fbbf498afb
|
@ -2,26 +2,27 @@ function __setx_generate_args --description 'Function to generate args'
|
|||
set --local previous_token (commandline --tokenize --cut-at-cursor)[-1]
|
||||
|
||||
if test "$previous_token" = '/u'
|
||||
wmic UserAccount get Name | sed --quiet '1b;/./p'
|
||||
__fish_list_windows_users
|
||||
return
|
||||
end
|
||||
|
||||
if test "$previous_token" = '/p'
|
||||
__fish_generate_password
|
||||
return
|
||||
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
|
||||
/x\tDisplay file coordinates, ignoring the /a, /r, and /d command-line options'
|
||||
end
|
||||
|
||||
echo -e '/u\tSpecify the name or IP address of a remote computer
|
||||
if __fish_seen_argument --windows 'a' --windows 'r'
|
||||
echo -e '/m\tSpecify to set the variable in the system environment'
|
||||
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
|
||||
/?\tShow help'
|
||||
|
||||
if not __fish_seen_argument --windows 'a' --windows 'm' --windows 'x'
|
||||
echo -e '/a\tSpecify absolute coordinates and offset as search parameters
|
||||
/m\tSpecify to set the variable in the system environment
|
||||
/x\tDisplay file coordinates, ignoring the /a, /r, and /d command-line options'
|
||||
end
|
||||
end
|
||||
|
||||
complete --command setx --no-files --arguments '(__setx_generate_args)'
|
Loading…
Reference in New Issue
Block a user