|
12345678910111213141516171819202122232425262728293031323334 |
- function __fish_using_command
- set cmd (commandline -opc)
- if [ (count $cmd) -eq (count $argv) ]
- for i in (seq (count $argv))
- if [ $cmd[$i] != $argv[$i] ]
- return 1
- end
- end
- return 0
- end
- return 1
- end
-
- complete -c gutenberg -n "__fish_using_command gutenberg" -s c -l config -d 'Path to a config file other than config.toml'
- complete -c gutenberg -n "__fish_using_command gutenberg" -s h -l help -d 'Prints help information'
- complete -c gutenberg -n "__fish_using_command gutenberg" -s V -l version -d 'Prints version information'
- complete -c gutenberg -n "__fish_using_command gutenberg" -f -a "init" -d 'Create a new Gutenberg project'
- complete -c gutenberg -n "__fish_using_command gutenberg" -f -a "build" -d 'Builds the site'
- complete -c gutenberg -n "__fish_using_command gutenberg" -f -a "serve" -d 'Serve the site. Rebuild and reload on change automatically'
- complete -c gutenberg -n "__fish_using_command gutenberg" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)'
- complete -c gutenberg -n "__fish_using_command gutenberg init" -s h -l help -d 'Prints help information'
- complete -c gutenberg -n "__fish_using_command gutenberg init" -s V -l version -d 'Prints version information'
- complete -c gutenberg -n "__fish_using_command gutenberg build" -s u -l base-url -d 'Force the base URL to be that value (default to the one in config.toml)'
- complete -c gutenberg -n "__fish_using_command gutenberg build" -s o -l output-dir -d 'Outputs the generated site in the given path'
- complete -c gutenberg -n "__fish_using_command gutenberg build" -s h -l help -d 'Prints help information'
- complete -c gutenberg -n "__fish_using_command gutenberg build" -s V -l version -d 'Prints version information'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s i -l interface -d 'Interface to bind on'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s p -l port -d 'Which port to use'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s o -l output-dir -d 'Outputs the generated site in the given path'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s u -l base-url -d 'Changes the base_url'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s h -l help -d 'Prints help information'
- complete -c gutenberg -n "__fish_using_command gutenberg serve" -s V -l version -d 'Prints version information'
- complete -c gutenberg -n "__fish_using_command gutenberg help" -s h -l help -d 'Prints help information'
- complete -c gutenberg -n "__fish_using_command gutenberg help" -s V -l version -d 'Prints version information'
|