2018-06-11 12:19:27 -07:00
|
|
|
# complete
|
|
|
|
|
2024-04-25 19:58:21 -03:00
|
|
|
> Get argument autocompletion to shell commands.
|
2025-03-26 02:30:50 +02:00
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion-Builtins.html#index-complete>.
|
2018-06-11 12:19:27 -07:00
|
|
|
|
|
|
|
- Apply a function that performs autocompletion to a command:
|
|
|
|
|
|
|
|
`complete -F {{function}} {{command}}`
|
|
|
|
|
|
|
|
- Apply a command that performs autocompletion to another command:
|
|
|
|
|
|
|
|
`complete -C {{autocomplete_command}} {{command}}`
|
|
|
|
|
|
|
|
- Apply autocompletion without appending a space to the completed word:
|
|
|
|
|
|
|
|
`complete -o nospace -F {{function}} {{command}}`
|