dispatchCharacter

abstract fun dispatchCharacter(modifiers: Int, codepoint: Int)(source)

Dispatch a character to the terminal.


open fun dispatchCharacter(modifiers: Int, ch: Char)(source)

Deprecated

Use dispatchCharacter(modifiers, codepoint) for full Unicode code point support

Replace with

dispatchCharacter(modifiers, ch.code)

Dispatch a character to the terminal.