Enter buffer.
Function | Description | Links |
---|---|---|
editor_backspace() | Delete the char in front of the cursor | |
editor_backward_char() | Move the cursor one character to the left | |
editor_backward_word() | Move the cursor to the beginning of the word | |
editor_bol() | Jump to the beginning of the line | |
editor_buffer_is_empty() | Is the Enter buffer empty? | |
editor_case_word() | Change the case of the word | |
editor_delete_char() | Delete the char under the cursor | |
editor_eol() | Jump to the end of the line | |
editor_forward_char() | Move the cursor one character to the right | |
editor_forward_word() | Move the cursor to the end of the word | |
editor_kill_eol() | Delete chars from cursor to end of line | |
editor_kill_eow() | Delete chars from the cursor to the end of the word | |
editor_kill_line() | Delete chars from cursor to beginning the line | |
editor_kill_whole_line() | Delete all chars on the line | |
editor_kill_word() | Delete the word in front of the cursor | |
editor_transpose_chars() | Transpose character under cursor with previous |