mirror of
https://github.com/tealdeer-rs/tealdeer.git
synced 2026-08-27 10:30:41 +02:00
34 lines
2.2 KiB
Text
34 lines
2.2 KiB
Text
#
|
|
# Completions for the tealdeer implementation of tldr
|
|
# https://github.com/tealdeer-rs/tealdeer/
|
|
#
|
|
|
|
complete -c tldr -s h -l help -d 'Print the help message' -f
|
|
complete -c tldr -s v -l version -d 'Show version information' -f
|
|
complete -c tldr -s l -l list -d 'List all commands in the cache' -f
|
|
complete -c tldr -l edit-page -d 'Edit custom page with `EDITOR`' -f
|
|
complete -c tldr -l edit-patch -d 'Edit custom patch with `EDITOR`' -f
|
|
complete -c tldr -s f -l render -d 'Render a specific markdown file' -r
|
|
complete -c tldr -s p -l platform -d 'Override the operating system' -xa 'linux macos sunos windows android freebsd netbsd openbsd common'
|
|
complete -c tldr -s L -l language -d 'Override the language' -x
|
|
complete -c tldr -s u -l update -d 'Update the local cache' -f
|
|
complete -c tldr -l no-auto-update -d 'If auto update is configured, disable it for this run' -f
|
|
complete -c tldr -s c -l clear-cache -d 'Clear the local cache' -f
|
|
complete -c tldr -s L -l config-path -d 'Override config file location' -r
|
|
complete -c tldr -s L -l override-config -d 'Override config values after reading config file' -x
|
|
complete -c tldr -l pager -d 'Use a pager to page output' -f
|
|
complete -c tldr -s r -l raw -d 'Display the raw markdown instead of rendering it' -f
|
|
complete -c tldr -s q -l quiet -d 'Suppress informational messages' -f
|
|
complete -c tldr -l show-paths -d 'Show file and directory paths used by tealdeer' -f
|
|
complete -c tldr -l seed-config -d 'Create a basic config' -f
|
|
complete -c tldr -l color -d 'Controls when to use color' -xa 'always auto never'
|
|
complete -c tldr -l short-options -d 'Display the short variants of placeholders' -f
|
|
complete -c tldr -l long-options -d 'Display the long variants of placeholders' -f
|
|
|
|
function __tealdeer_entries
|
|
if set entries (tldr --list 2>/dev/null)
|
|
string replace -a -i -r "\,\s" "\n" $entries
|
|
end
|
|
end
|
|
|
|
complete -f -c tldr -a '(__tealdeer_entries)'
|