fish-shell/share/completions/setx.fish

27 lines
992 B
Fish
Raw Normal View History

2021-11-25 17:46:22 +08:00
function __setx_generate_args --description 'Function to generate args'
2021-11-26 08:04:20 +08:00
set --local previous_token (commandline --tokenize --cut-at-cursor)[-1]
if test "$previous_token" = '/u'
wmic UserAccount get Name | sed --quiet '1b;/./p'
return
end
if test "$previous_token" = '/p'
__fish_generate_password
return
end
2021-11-25 17:46:22 +08:00
echo -e '/u\tSpecify the name or IP address of a remote computer
/p\tSpecify the password of the user account that is specified in the /u parameter
/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'
2021-11-25 20:44:26 +08:00
if not __fish_seen_argument --windows 'a' --windows 'm' --windows 'x'
2021-11-25 17:46:22 +08:00
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)'