Package org.aesh.readline.action.mappings
package org.aesh.readline.action.mappings
-
ClassDescriptionMaps readline function names to their corresponding action implementations.Enumeration of all available readline action names.Action that moves the cursor one character backward.Move to the first entry in the history.Action that moves the cursor to the beginning of the line.Action that capitalizes the word from cursor to end of word.Action that changes text from cursor to beginning of previous WORD (whitespace-delimited).Action that changes text from cursor to beginning of previous word.Action that toggles the case of the character at cursor and moves forward.Action that changes text from cursor to end of line.Action that changes text from cursor to end of WORD (whitespace-delimited).Action that changes text from cursor to end of word.Read a character and move point to the next occurrence of that character.Read a character and move point to the previous occurrence of that character.Action that clears the screen and redraws the current line.Action that triggers tab completion for the current input.Action that copies text from cursor to beginning of previous WORD (whitespace-delimited).Action that copies text from cursor to beginning of previous word.Action that copies text from cursor to end of WORD (whitespace-delimited).Action that copies text from cursor to end of word.Action that copies the entire current line to the paste buffer.Action that deletes text from cursor to beginning of previous WORD (whitespace-delimited).Action that deletes text from cursor to beginning of previous word.Action that deletes the character at the cursor position.Delete the character under the cursor if the line is non-empty; otherwise, list possible completions.Action that deletes text from cursor to end of line.Action that deletes text from cursor to end of WORD (whitespace-delimited).Action that deletes text from cursor to end of word.Delete all whitespace around the cursor.Action that deletes the entire current line.Action that deletes the character before the cursor (backspace).Action that deletes text from cursor to beginning of line.Action that converts the next word to lowercase.Action that switches the input processor to Emacs editing mode.Action that handles end-of-file (EOF) signal, typically triggered by Ctrl-D.Move to the end of the input history, restoring the current line.Action that moves the cursor to the end of the current line.Action that accepts the current input line and processes it.Swap the point with the mark.Action that moves the cursor one character forward.Action that searches forward through the command history.Search backward through the history for the string of characters between the start of the current line and the point (prefix search).Search forward through the history for the string of characters between the start of the current line and the point (prefix search).Insert a '#' at the beginning of the line and accept it, effectively commenting out the current command.Action that sends an interrupt signal (SIGINT) to the terminal.Kill the text in the current region.Action that moves the cursor backward to the start of the previous WORD (space-delimited).Action that moves the cursor backward to the start of the previous word.Action that moves the cursor forward to the end of the next WORD (space-delimited).Action that moves the cursor forward to the end of the next word.Action that retrieves the next entry from the command history.A no-op action that performs no operation when executed.Search forward through the history starting at the current line and moving 'down' through the history as necessary using a non-incremental search for a string supplied by the user.Search backward through the history starting at the current line and moving 'up' through the history as necessary using a non-incremental search for a string supplied by the user.Toggle overwrite mode.List the possible completions of the text before point.Action that retrieves the previous entry from the command history.Add the next character typed to the line verbatim.Refresh the current line without clearing the screen.Action that searches backward through the command history.Undo all changes made to this line.Set the mark to the point.Perform tilde expansion on the current word.Transpose the character before cursor with the character at cursor, then move cursor forward.Transpose the word before cursor with the word after (or at) cursor.Action that undoes the last editing operation on the input buffer.Kill the word behind point, using whitespace and the slash character as word boundaries.Action that converts the character at the cursor to uppercase.Action that converts the next word to uppercase.Action that switches the input processor to Vi editing mode.Action that pastes (yanks) text from the paste buffer at the cursor position.Action that pastes (yanks) text from the paste buffer after the cursor position.Insert the last argument to the previous command (the last word of the previous history entry).Insert the first argument to the previous command (usually the second word on the previous line) at point.Rotate the kill ring, and yank the new top.