Files
dotfiles/dot_config/nushell/nu_scripts/custom-completions/auto-generate/completions/apropos.nu
Cian Hughes 896af887ca Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
2024-11-07 13:52:17 +00:00

14 lines
480 B
Nu

# Display help and exit
extern "apropos" [
--help(-?) # Display help and exit
--usage # Display short usage message
--debug(-d) # Print debugging info
--verbose(-v) # Verbose mode
--regex(-r) # Keyword as regex (default)
--wildcard(-w) # Keyword as wildcards
--exact(-e) # Keyword as exactly match
--version(-V) # Display version and exit
--and(-a) # Match all keywords
--long(-l) # Do not trim output to terminal width
...args
]