Prototype for a Enter Function. More...
Functions | |
static int | op_editor_complete (struct EnterWindowData *wdata, int op) |
Complete filename or alias - Implements enter_function_t -. | |
static int | op_editor_history_down (struct EnterWindowData *wdata, int op) |
Scroll down through the history list - Implements enter_function_t -. | |
static int | op_editor_history_search (struct EnterWindowData *wdata, int op) |
Search through the history list - Implements enter_function_t -. | |
static int | op_editor_history_up (struct EnterWindowData *wdata, int op) |
Scroll up through the history list - Implements enter_function_t -. | |
static int | op_editor_backspace (struct EnterWindowData *wdata, int op) |
Delete the char in front of the cursor - Implements enter_function_t -. | |
static int | op_editor_backward_char (struct EnterWindowData *wdata, int op) |
Move the cursor one character to the left - Implements enter_function_t -. | |
static int | op_editor_backward_word (struct EnterWindowData *wdata, int op) |
Move the cursor to the beginning of the word - Implements enter_function_t -. | |
static int | op_editor_bol (struct EnterWindowData *wdata, int op) |
Jump to the beginning of the line - Implements enter_function_t -. | |
static int | op_editor_capitalize_word (struct EnterWindowData *wdata, int op) |
Capitalize the word - Implements enter_function_t - This function handles: | |
static int | op_editor_delete_char (struct EnterWindowData *wdata, int op) |
Delete the char under the cursor - Implements enter_function_t -. | |
static int | op_editor_eol (struct EnterWindowData *wdata, int op) |
Jump to the end of the line - Implements enter_function_t -. | |
static int | op_editor_forward_char (struct EnterWindowData *wdata, int op) |
Move the cursor one character to the right - Implements enter_function_t -. | |
static int | op_editor_forward_word (struct EnterWindowData *wdata, int op) |
Move the cursor to the end of the word - Implements enter_function_t -. | |
static int | op_editor_kill_eol (struct EnterWindowData *wdata, int op) |
Delete chars from cursor to end of line - Implements enter_function_t -. | |
static int | op_editor_kill_eow (struct EnterWindowData *wdata, int op) |
Delete chars from the cursor to the end of the word - Implements enter_function_t -. | |
static int | op_editor_kill_line (struct EnterWindowData *wdata, int op) |
Delete all chars on the line - Implements enter_function_t -. | |
static int | op_editor_kill_whole_line (struct EnterWindowData *wdata, int op) |
Delete all chars on the line - Implements enter_function_t -. | |
static int | op_editor_kill_word (struct EnterWindowData *wdata, int op) |
Delete the word in front of the cursor - Implements enter_function_t -. | |
static int | op_editor_quote_char (struct EnterWindowData *wdata, int op) |
Quote the next typed key - Implements enter_function_t -. | |
static int | op_editor_transpose_chars (struct EnterWindowData *wdata, int op) |
Transpose character under cursor with previous - Implements enter_function_t -. | |
static int | op_help (struct EnterWindowData *wdata, int op) |
Display Help - Implements enter_function_t -. | |
static int | op_redraw (struct EnterWindowData *wdata, int op) |
Redraw the screen - Implements enter_function_t -. | |
Prototype for a Enter Function.
wdata | Enter Window data |
op | Operation to perform, e.g. OP_ENTER_NEXT |
enum | FunctionRetval |
|
static |
Complete filename or alias - Implements enter_function_t -.
This function handles:
Definition at line 173 of file functions.c.
|
static |
Scroll down through the history list - Implements enter_function_t -.
Definition at line 197 of file functions.c.
|
static |
Search through the history list - Implements enter_function_t -.
Definition at line 213 of file functions.c.
|
static |
Scroll up through the history list - Implements enter_function_t -.
Definition at line 225 of file functions.c.
|
static |
Delete the char in front of the cursor - Implements enter_function_t -.
Definition at line 243 of file functions.c.
|
static |
Move the cursor one character to the left - Implements enter_function_t -.
Definition at line 264 of file functions.c.
|
static |
Move the cursor to the beginning of the word - Implements enter_function_t -.
Definition at line 272 of file functions.c.
|
static |
Jump to the beginning of the line - Implements enter_function_t -.
Definition at line 280 of file functions.c.
|
static |
Capitalize the word - Implements enter_function_t - This function handles:
Definition at line 292 of file functions.c.
|
static |
Delete the char under the cursor - Implements enter_function_t -.
Definition at line 315 of file functions.c.
|
static |
Jump to the end of the line - Implements enter_function_t -.
Definition at line 323 of file functions.c.
|
static |
Move the cursor one character to the right - Implements enter_function_t -.
Definition at line 333 of file functions.c.
|
static |
Move the cursor to the end of the word - Implements enter_function_t -.
Definition at line 341 of file functions.c.
|
static |
Delete chars from cursor to end of line - Implements enter_function_t -.
Definition at line 349 of file functions.c.
|
static |
Delete chars from the cursor to the end of the word - Implements enter_function_t -.
Definition at line 357 of file functions.c.
|
static |
Delete all chars on the line - Implements enter_function_t -.
Definition at line 365 of file functions.c.
|
static |
Delete all chars on the line - Implements enter_function_t -.
Definition at line 373 of file functions.c.
|
static |
Delete the word in front of the cursor - Implements enter_function_t -.
Definition at line 381 of file functions.c.
|
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 393 of file functions.c.
|
static |
Transpose character under cursor with previous - Implements enter_function_t -.
Definition at line 416 of file functions.c.
|
static |
Display Help - Implements enter_function_t -.
Definition at line 424 of file functions.c.
|
static |
Redraw the screen - Implements enter_function_t -.
Definition at line 433 of file functions.c.