Uses of Interface
org.aesh.readline.action.Action
Packages that use Action
Package
Description
-
Uses of Action in org.aesh.readline.action
Subinterfaces of Action in org.aesh.readline.actionModifier and TypeInterfaceDescriptioninterfaceAn action that can receive input events and maintain focus state.interfaceAction interface for history search operations with status tracking.Methods in org.aesh.readline.action with parameters of type Action -
Uses of Action in org.aesh.readline.action.mappings
Classes in org.aesh.readline.action.mappings that implement ActionModifier and TypeClassDescriptionclassAction that moves the cursor one character backward.classMove to the first entry in the history.classAction that moves the cursor to the beginning of the line.classAction that capitalizes the word from cursor to end of word.classAction that changes text from cursor to beginning of previous WORD (whitespace-delimited).classAction that changes text from cursor to beginning of previous word.classAction that toggles the case of the character at cursor and moves forward.classAction that changes text from cursor to end of line.classAction that changes text from cursor to end of WORD (whitespace-delimited).classAction that changes text from cursor to end of word.classRead a character and move point to the next occurrence of that character.classRead a character and move point to the previous occurrence of that character.classAction that clears the screen and redraws the current line.classAction that triggers tab completion for the current input.classAction that copies text from cursor to beginning of previous WORD (whitespace-delimited).classAction that copies text from cursor to beginning of previous word.classAction that copies text from cursor to end of WORD (whitespace-delimited).classAction that copies text from cursor to end of word.classAction that copies the entire current line to the paste buffer.classAction that deletes text from cursor to beginning of previous WORD (whitespace-delimited).classAction that deletes text from cursor to beginning of previous word.classAction that deletes the character at the cursor position.classDelete the character under the cursor if the line is non-empty; otherwise, list possible completions.classAction that deletes text from cursor to end of line.classAction that deletes text from cursor to end of WORD (whitespace-delimited).classAction that deletes text from cursor to end of word.classDelete all whitespace around the cursor.classAction that deletes the entire current line.classAction that deletes the character before the cursor (backspace).classAction that deletes text from cursor to beginning of line.classAction that converts the next word to lowercase.classAction that switches the input processor to Emacs editing mode.classAction that handles end-of-file (EOF) signal, typically triggered by Ctrl-D.classMove to the end of the input history, restoring the current line.classAction that moves the cursor to the end of the current line.classAction that accepts the current input line and processes it.classSwap the point with the mark.classAction that moves the cursor one character forward.classAction that searches forward through the command history.classSearch backward through the history for the string of characters between the start of the current line and the point (prefix search).classSearch forward through the history for the string of characters between the start of the current line and the point (prefix search).classInsert a '#' at the beginning of the line and accept it, effectively commenting out the current command.classAction that sends an interrupt signal (SIGINT) to the terminal.classKill the text in the current region.classAction that moves the cursor backward to the start of the previous WORD (space-delimited).classAction that moves the cursor backward to the start of the previous word.classAction that moves the cursor forward to the end of the next WORD (space-delimited).classAction that moves the cursor forward to the end of the next word.classAction that retrieves the next entry from the command history.classA no-op action that performs no operation when executed.classSearch 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.classSearch 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.classToggle overwrite mode.classList the possible completions of the text before point.classAction that retrieves the previous entry from the command history.classAdd the next character typed to the line verbatim.classRefresh the current line without clearing the screen.classAction that searches backward through the command history.classUndo all changes made to this line.classSet the mark to the point.classPerform tilde expansion on the current word.classTranspose the character before cursor with the character at cursor, then move cursor forward.classTranspose the word before cursor with the word after (or at) cursor.classAction that undoes the last editing operation on the input buffer.classKill the word behind point, using whitespace and the slash character as word boundaries.classAction that converts the character at the cursor to uppercase.classAction that converts the next word to uppercase.classAction that switches the input processor to Vi editing mode.classAction that pastes (yanks) text from the paste buffer at the cursor position.classAction that pastes (yanks) text from the paste buffer after the cursor position.classInsert the last argument to the previous command (the last word of the previous history entry).classInsert the first argument to the previous command (usually the second word on the previous line) at point.classRotate the kill ring, and yank the new top.Methods in org.aesh.readline.action.mappings that return ActionModifier and TypeMethodDescriptionstatic ActionActionMapper.mapToAction(String function) Maps a readline function name to its corresponding action.Methods in org.aesh.readline.action.mappings with parameters of type Action -
Uses of Action in org.aesh.readline.editing
Methods in org.aesh.readline.editing that return ActionModifier and TypeMethodDescriptionParse a key event and return the corresponding action.Methods in org.aesh.readline.editing with parameters of type ActionModifier and TypeMethodDescriptionAdd an action mapping for a key.Adds a key binding with the specified action.Add an action mapping for a key.Vi.addAction(Key key, Action action, EditMode.Status status) Add an action mapping for a key with status.Vi.addAction(Key key, Action action, EditMode.Status status, EditMode.Status after) Add an action mapping for a key with current and next status.Vi.addAction(Key key, Action action, EditMode.Status status, EditMode.Status after, EditMode.Status actionStatus) Add an action mapping for a key with full status configuration.