Add completion for prime-run

This commit is contained in:
oriko1010 2020-08-05 10:20:03 +03:00 committed by Johannes Altmanninger
parent d8eb7fc46d
commit 8b02a78887
2 changed files with 7 additions and 0 deletions

View File

@ -149,6 +149,7 @@ Completions
- ``mpc``
- ``nc``, ``netcat``, ``nc.openbsd``, ``nc.traditional``
- ``nmap``, ``ncat``
- ``prime-run``
- ``pyenv`` (#6551)
- ``rst2html``, ``rst2html4``, ``rst2html5``, ``rst2latex``,
``rst2man``, ``rst2odt``, ``rst2pseudoxml``, ``rst2s5``,

View File

@ -0,0 +1,6 @@
function __fish_complete_prime_run_subcommand
set -lx -a PATH /usr/local/sbin /sbin /usr/sbin
__fish_complete_subcommand --commandline $args
end
complete -c prime-run -x -a "(__fish_complete_prime_run_subcommand)"