You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
2.1KB

  1. complete -c zola -n "__fish_use_subcommand" -s c -l config -d 'Path to a config file other than config.toml'
  2. complete -c zola -n "__fish_use_subcommand" -s h -l help -d 'Prints help information'
  3. complete -c zola -n "__fish_use_subcommand" -s V -l version -d 'Prints version information'
  4. complete -c zola -n "__fish_use_subcommand" -f -a "init" -d 'Create a new Zola project'
  5. complete -c zola -n "__fish_use_subcommand" -f -a "build" -d 'Builds the site'
  6. complete -c zola -n "__fish_use_subcommand" -f -a "serve" -d 'Serve the site. Rebuild and reload on change automatically'
  7. complete -c zola -n "__fish_use_subcommand" -f -a "help" -d 'Prints this message or the help of the given subcommand(s)'
  8. complete -c zola -n "__fish_seen_subcommand_from init" -s h -l help -d 'Prints help information'
  9. complete -c zola -n "__fish_seen_subcommand_from init" -s V -l version -d 'Prints version information'
  10. complete -c zola -n "__fish_seen_subcommand_from build" -s u -l base-url -d 'Force the base URL to be that value (default to the one in config.toml)'
  11. complete -c zola -n "__fish_seen_subcommand_from build" -s o -l output-dir -d 'Outputs the generated site in the given path'
  12. complete -c zola -n "__fish_seen_subcommand_from build" -s h -l help -d 'Prints help information'
  13. complete -c zola -n "__fish_seen_subcommand_from build" -s V -l version -d 'Prints version information'
  14. complete -c zola -n "__fish_seen_subcommand_from serve" -s i -l interface -d 'Interface to bind on'
  15. complete -c zola -n "__fish_seen_subcommand_from serve" -s p -l port -d 'Which port to use'
  16. complete -c zola -n "__fish_seen_subcommand_from serve" -s o -l output-dir -d 'Outputs the generated site in the given path'
  17. complete -c zola -n "__fish_seen_subcommand_from serve" -s u -l base-url -d 'Changes the base_url'
  18. complete -c zola -n "__fish_seen_subcommand_from serve" -s h -l help -d 'Prints help information'
  19. complete -c zola -n "__fish_seen_subcommand_from serve" -s V -l version -d 'Prints version information'
  20. complete -c zola -n "__fish_seen_subcommand_from help" -s h -l help -d 'Prints help information'
  21. complete -c zola -n "__fish_seen_subcommand_from help" -s V -l version -d 'Prints version information'