Editor functions.
Function | Description | Links |
enter_function_dispatcher() | Perform an Enter function | function_dispatcher_t, dispatcher_api |
op_editor_backspace() | Delete the char in front of the cursor | enter_function_t, enter_function_api |
op_editor_backward_char() | Move the cursor one character to the left | enter_function_t, enter_function_api |
op_editor_backward_word() | Move the cursor to the beginning of the word | enter_function_t, enter_function_api |
op_editor_bol() | Jump to the beginning of the line | enter_function_t, enter_function_api |
op_editor_capitalize_word() | Capitalize the word | enter_function_t, enter_function_api |
op_editor_complete() | Complete filename or alias | enter_function_t, enter_function_api |
op_editor_delete_char() | Delete the char under the cursor | enter_function_t, enter_function_api |
op_editor_eol() | Jump to the end of the line | enter_function_t, enter_function_api |
op_editor_forward_char() | Move the cursor one character to the right | enter_function_t, enter_function_api |
op_editor_forward_word() | Move the cursor to the end of the word | enter_function_t, enter_function_api |
op_editor_history_down() | Scroll down through the history list | enter_function_t, enter_function_api |
op_editor_history_search() | Search through the history list | enter_function_t, enter_function_api |
op_editor_history_up() | Scroll up through the history list | enter_function_t, enter_function_api |
op_editor_kill_eol() | Delete chars from cursor to end of line | enter_function_t, enter_function_api |
op_editor_kill_eow() | Delete chars from the cursor to the end of the word | enter_function_t, enter_function_api |
op_editor_kill_line() | Delete all chars on the line | enter_function_t, enter_function_api |
op_editor_kill_whole_line() | Delete all chars on the line | enter_function_t, enter_function_api |
op_editor_kill_word() | Delete the word in front of the cursor | enter_function_t, enter_function_api |
op_editor_quote_char() | Quote the next typed key | enter_function_t, enter_function_api |
op_editor_transpose_chars() | Transpose character under cursor with previous | enter_function_t, enter_function_api |
op_help() | Display Help | enter_function_t, enter_function_api |
op_redraw() | Redraw the screen | enter_function_t, enter_function_api |
replace_part() | Search and replace on a buffer | |