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.
value - the value to complete with
terminal - true if the value is terminal, i.e can be further completed