Explorar o código

complete: add page (#2136)

Emma Bukacek %!s(int64=6) %!d(string=hai) anos
pai
achega
dfabca0566
Modificáronse 1 ficheiros con 15 adicións e 0 borrados
  1. 15 0
      pages/common/complete.md

+ 15 - 0
pages/common/complete.md

@@ -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}}`