mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-19 21:43:41 +08:00
262e2d5fe6
* feat(function): move cmd completion function to a separate file * feat(completion): support wine cmd subcommand * feat(completion): support wine control subcommand * feat(completion): support wine eject subcommand * feat(completion): support wine explorer subcommand * feat(completion): support wine explorer subcommand for desktops * feat(completion): support wine start subcommand * feat(completion): support wine winemenubuilder subcommand * feat(completion): support wine winepath subcommand * fix(function): rename function for cmd argument completion * feat(function): implement function to complete registry keys * feat(completion): support wine regedit subcommand * feat(function): add top-level key descriptions * fix(completion): remove redundant comment * feat(completion): support wine msiexec subcommand * refactor(completion): group code into functions * feat(completion): enhance subcommand descriptions
22 lines
1.0 KiB
Fish
22 lines
1.0 KiB
Fish
complete -c cmd -f -a '(__fish_cmd__complete_args)'
|
|
|
|
complete -c cmd -f -n 'not __fish_seen_argument -w c -w k' -a /c \
|
|
-d 'Carry out the command specified by string and then stop'
|
|
complete -c cmd -f -n 'not __fish_seen_argument -w c -w k' -a /k \
|
|
-d 'Carry out the command specified by string and continue'
|
|
|
|
complete -c cmd -f -a /s -d 'Modify the treatment of string after /c or /k'
|
|
complete -c cmd -f -a /q -d 'Turn the echo off'
|
|
complete -c cmd -f -a /d -d 'Disable execution of AutoRun commands'
|
|
|
|
complete -c cmd -f -n 'not __fish_seen_argument -w a -w u' -a /a \
|
|
-d 'Format internal command output as ANSI'
|
|
complete -c cmd -f -n 'not __fish_seen_argument -w a -w u' -a /u \
|
|
-d 'Format internal command output as Unicode'
|
|
|
|
complete -c cmd -f -a /t -d 'Set the background and foreground color'
|
|
complete -c cmd -f -a /e -d 'Manage command extensions'
|
|
complete -c cmd -f -a /f -d 'Manage file and directory name completion'
|
|
complete -c cmd -f -a /v -d 'Manage delayed environment variable expansion'
|
|
complete -c cmd -f -a '/?' -d 'Show help'
|