Document Events
:editor_execute
Vedeu.trigger(:_editor_execute_, name)
:editor_delete_character
This event attempts to delete the character in the named document at the current virtual cursor position.
Vedeu.trigger(:_editor_delete_character_, name)
:editor_delete_line
This event attempts to delete the line in the named document at the current virtual cursor position.
Vedeu.trigger(:_editor_delete_line_, name)
:editor_down
This event attempts to move the virtual cursor down by one line in the named document.
Vedeu.trigger(:_editor_down_, name)
:editor_insert_character
This event attempts to insert the given character in the named document at the current virtual cursor position.
Vedeu.trigger(:_editor_insert_character_, name, character)
:editor_insert_line
This event attempts to insert a new line in the named document at the current virtual cursor position.
Vedeu.trigger(:_editor_insert_line_, name)
:editor_left
This event attempts to move the virtual cursor left by one character in the named document.
Vedeu.trigger(:_editor_left_, name)
:editor_right
This event attempts to move the virtual cursor right by one character in the named document.
Vedeu.trigger(:_editor_right_, name)
:editor_up
This event attempts to move the virtual cursor up by one line in the named document.
Vedeu.trigger(:_editor_up_, name)