Prototype for a Enter Function. More...
Functions | |
| static int | op_editor_complete (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Complete filename or alias - Implements enter_function_t -. | |
| static int | op_editor_history_down (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Scroll down through the history list - Implements enter_function_t -. | |
| static int | op_editor_history_search (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Search through the history list - Implements enter_function_t -. | |
| static int | op_editor_history_up (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Scroll up through the history list - Implements enter_function_t -. | |
| static int | op_editor_backspace (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete the char in front of the cursor - Implements enter_function_t -. | |
| static int | op_editor_backward_char (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Move the cursor one character to the left - Implements enter_function_t -. | |
| static int | op_editor_backward_word (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Move the cursor to the beginning of the word - Implements enter_function_t -. | |
| static int | op_editor_bol (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Jump to the beginning of the line - Implements enter_function_t -. | |
| static int | op_editor_capitalize_word (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Capitalize the word - Implements enter_function_t - This function handles: | |
| static int | op_editor_delete_char (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete the char under the cursor - Implements enter_function_t -. | |
| static int | op_editor_eol (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Jump to the end of the line - Implements enter_function_t -. | |
| static int | op_editor_forward_char (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Move the cursor one character to the right - Implements enter_function_t -. | |
| static int | op_editor_forward_word (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Move the cursor to the end of the word - Implements enter_function_t -. | |
| static int | op_editor_kill_eol (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete chars from cursor to end of line - Implements enter_function_t -. | |
| static int | op_editor_kill_eow (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete chars from the cursor to the end of the word - Implements enter_function_t -. | |
| static int | op_editor_kill_line (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete all chars on the line - Implements enter_function_t -. | |
| static int | op_editor_kill_whole_line (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete all chars on the line - Implements enter_function_t -. | |
| static int | op_editor_kill_word (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Delete the word in front of the cursor - Implements enter_function_t -. | |
| static int | op_editor_quote_char (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Quote the next typed key - Implements enter_function_t -. | |
| static int | op_editor_transpose_chars (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Transpose character under cursor with previous - Implements enter_function_t -. | |
| static int | op_help (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Display Help - Implements enter_function_t -. | |
| static int | op_redraw (struct EnterFunctionData *fdata, const struct KeyEvent *event) |
| Redraw the screen - Implements enter_function_t -. | |
Prototype for a Enter Function.
| fdata | Enter Function context data |
| event | Event to process |
| enum | FunctionRetval |
|
static |
Complete filename or alias - Implements enter_function_t -.
This function handles:
Definition at line 190 of file functions.c.
Here is the call graph for this function:
|
static |
Scroll down through the history list - Implements enter_function_t -.
Definition at line 215 of file functions.c.
Here is the call graph for this function:
|
static |
Search through the history list - Implements enter_function_t -.
Definition at line 235 of file functions.c.
Here is the call graph for this function:
|
static |
Scroll up through the history list - Implements enter_function_t -.
Definition at line 252 of file functions.c.
Here is the call graph for this function:
|
static |
Delete the char in front of the cursor - Implements enter_function_t -.
Definition at line 274 of file functions.c.
Here is the call graph for this function:
|
static |
Move the cursor one character to the left - Implements enter_function_t -.
Definition at line 296 of file functions.c.
Here is the call graph for this function:
|
static |
Move the cursor to the beginning of the word - Implements enter_function_t -.
Definition at line 305 of file functions.c.
Here is the call graph for this function:
|
static |
Jump to the beginning of the line - Implements enter_function_t -.
Definition at line 314 of file functions.c.
Here is the call graph for this function:
|
static |
Capitalize the word - Implements enter_function_t - This function handles:
Definition at line 327 of file functions.c.
Here is the call graph for this function:
|
static |
Delete the char under the cursor - Implements enter_function_t -.
Definition at line 352 of file functions.c.
Here is the call graph for this function:
|
static |
Jump to the end of the line - Implements enter_function_t -.
Definition at line 361 of file functions.c.
Here is the call graph for this function:
|
static |
Move the cursor one character to the right - Implements enter_function_t -.
Definition at line 372 of file functions.c.
Here is the call graph for this function:
|
static |
Move the cursor to the end of the word - Implements enter_function_t -.
Definition at line 381 of file functions.c.
Here is the call graph for this function:
|
static |
Delete chars from cursor to end of line - Implements enter_function_t -.
Definition at line 390 of file functions.c.
Here is the call graph for this function:
|
static |
Delete chars from the cursor to the end of the word - Implements enter_function_t -.
Definition at line 399 of file functions.c.
Here is the call graph for this function:
|
static |
Delete all chars on the line - Implements enter_function_t -.
Definition at line 408 of file functions.c.
Here is the call graph for this function:
|
static |
Delete all chars on the line - Implements enter_function_t -.
Definition at line 417 of file functions.c.
Here is the call graph for this function:
|
static |
Delete the word in front of the cursor - Implements enter_function_t -.
Definition at line 427 of file functions.c.
Here is the call graph for this function:
|
static |
Quote the next typed key - Implements enter_function_t -.
As part of the line-editor, this function uses the message window.
Definition at line 440 of file functions.c.
Here is the call graph for this function:
|
static |
Transpose character under cursor with previous - Implements enter_function_t -.
Definition at line 464 of file functions.c.
Here is the call graph for this function:
|
static |
Display Help - Implements enter_function_t -.
Definition at line 474 of file functions.c.
Here is the call graph for this function:
|
static |
Redraw the screen - Implements enter_function_t -.
Definition at line 483 of file functions.c.
Here is the call graph for this function: