mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
complete: add page (#2136)
This commit is contained in:
parent
35d86d5e96
commit
dfabca0566
1 changed files with 15 additions and 0 deletions
15
pages/common/complete.md
Normal file
15
pages/common/complete.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# complete
|
||||
|
||||
> Provides argument autocompletion to shell commands.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue