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.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.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.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.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.classAction that moves the cursor to the end of the current line.classAction that accepts the current input line and processes it.classAction that moves the cursor one character forward.classAction that searches forward through the command history.classAction that sends an interrupt signal (SIGINT) to the terminal.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.classAction that retrieves the previous entry from the command history.classAction that searches backward through the command history.classAction that undoes the last editing operation on the input buffer.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.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.