2019-10-21 04:22:28 -04:00
|
|
|
---
|
2021-04-20 14:21:45 -04:00
|
|
|
date: 2021-03-21
|
2019-10-21 04:22:28 -04:00
|
|
|
title: "hugo gen autocomplete"
|
|
|
|
slug: hugo_gen_autocomplete
|
|
|
|
url: /commands/hugo_gen_autocomplete/
|
|
|
|
---
|
|
|
|
## hugo gen autocomplete
|
|
|
|
|
|
|
|
Generate shell autocompletion script for Hugo
|
|
|
|
|
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
Generates a shell autocompletion script for Hugo.
|
|
|
|
|
2021-02-23 11:39:59 -05:00
|
|
|
The script is written to the console (stdout).
|
2019-10-21 04:22:28 -04:00
|
|
|
|
2021-02-23 11:39:59 -05:00
|
|
|
To write to file, add the `--completionfile=/path/to/file` flag.
|
2019-10-21 04:22:28 -04:00
|
|
|
|
2021-02-23 11:39:59 -05:00
|
|
|
Add `--type={bash, zsh, fish or powershell}` flag to set alternative
|
|
|
|
shell type.
|
2019-10-21 04:22:28 -04:00
|
|
|
|
|
|
|
Logout and in again to reload the completion scripts,
|
|
|
|
or just source them in directly:
|
|
|
|
|
2021-02-23 11:39:59 -05:00
|
|
|
$ . /etc/bash_completion or /path/to/file
|
2019-10-21 04:22:28 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
hugo gen autocomplete [flags]
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
2021-02-23 11:39:59 -05:00
|
|
|
-f, --completionfile string autocompletion file, defaults to stdout
|
2019-10-21 04:22:28 -04:00
|
|
|
-h, --help help for autocomplete
|
2021-02-23 11:39:59 -05:00
|
|
|
-t, --type string autocompletion type (bash, zsh, fish, or powershell) (default "bash")
|
2019-10-21 04:22:28 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Options inherited from parent commands
|
|
|
|
|
|
|
|
```
|
2020-10-06 10:22:20 -04:00
|
|
|
--config string config file (default is path/config.yaml|json|toml)
|
|
|
|
--configDir string config dir (default "config")
|
|
|
|
--debug debug output
|
|
|
|
-e, --environment string build environment
|
|
|
|
--ignoreVendor ignores any _vendor directory
|
|
|
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
|
|
|
--log enable Logging
|
|
|
|
--logFile string log File path (if set, logging enabled automatically)
|
|
|
|
--quiet build in quiet mode
|
|
|
|
-s, --source string filesystem path to read files relative from
|
|
|
|
--themesDir string filesystem path to themes directory
|
|
|
|
-v, --verbose verbose output
|
|
|
|
--verboseLog verbose logging
|
2019-10-21 04:22:28 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### SEE ALSO
|
|
|
|
|
|
|
|
* [hugo gen](/commands/hugo_gen/) - A collection of several useful generators.
|
|
|
|
|
2021-04-20 14:21:45 -04:00
|
|
|
###### Auto generated by spf13/cobra on 21-Mar-2021
|