onTabComplete

abstract suspend fun onTabComplete(    sender: <Error class: unknown class>,     command: <Error class: unknown class>,     alias: String,     args: Array<out String>): List<String>?

Requests a list of possible completions for a command argument. If the call is suspended during the execution, the returned list will not be shown.

Return

A List of possible completions for the final argument, or null to default to the command executor

Parameters

sender
  • Source of the command.

command
  • Command which was executed.

alias
  • Alias of the command which was used.

args
  • The arguments passed to the command, including final partial argument to be completed and command label.