interface Completion
The completion object
Author
Julien Viet
abstract fun complete(candidates: MutableList<String>): Unit
End the completion with a list of candidates, these candidates will be displayed by the shell on the console. abstract fun complete(value: String, terminal: Boolean): Unit
End the completion with a value that will be inserted to complete the line. |
|
open static fun findLongestCommonPrefix(values: MutableCollection<String>): String |
|
abstract fun lineTokens(): MutableList<CliToken> |
|
abstract fun rawLine(): String |
|
abstract fun session(): Session |
|
abstract fun vertx(): Vertx |