|
|||||||||
| Home >> All >> com >> maddyhome >> idea >> vim >> [ command overview ] | PREV NEXT | ||||||||
A
- Argument - class com.maddyhome.idea.vim.command.Argument.
- This represents a command argument.
- Argument(char) - Constructor for class com.maddyhome.idea.vim.command.Argument
- Creates a character argument
- Argument(Command) - Constructor for class com.maddyhome.idea.vim.command.Argument
- Creates a motion command argument
- Argument(String) - Constructor for class com.maddyhome.idea.vim.command.Argument
- Creates a string argument
- action - Variable in class com.maddyhome.idea.vim.command.Command
- argument - Variable in class com.maddyhome.idea.vim.command.Command
C
- CHANGE - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that change text in the editor
- CHARACTER - Static variable in class com.maddyhome.idea.vim.command.Argument
- This is for arguments of type character
- COPY - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that copy text in the editor
- Command - class com.maddyhome.idea.vim.command.Command.
- This represents a single Vim command to be executed.
- Command(int, AnAction, int, int) - Constructor for class com.maddyhome.idea.vim.command.Command
- Creates a command that doesn't require an argument
- Command(int, AnAction, int, int, Argument) - Constructor for class com.maddyhome.idea.vim.command.Command
- Creates a command that requires an argument
- CommandState - class com.maddyhome.idea.vim.command.CommandState.
- This singleton maintains various state information about commands being run
- CommandState() - Constructor for class com.maddyhome.idea.vim.command.CommandState
- Signleton, no public object creation
- CommandState.State - class com.maddyhome.idea.vim.command.CommandState.State.
- CommandState.State(int, int, int) - Constructor for class com.maddyhome.idea.vim.command.CommandState.State
- charArg - Variable in class com.maddyhome.idea.vim.command.Argument
- columns - Variable in class com.maddyhome.idea.vim.command.VisualChange
- com.maddyhome.idea.vim.command - package com.maddyhome.idea.vim.command
- command - Variable in class com.maddyhome.idea.vim.command.CommandState
- count - Variable in class com.maddyhome.idea.vim.command.Command
- currentState() - Method in class com.maddyhome.idea.vim.command.CommandState
D
- DELETE - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that remove text from the editor
- defaultState - Variable in class com.maddyhome.idea.vim.command.CommandState
E
- end - Variable in class com.maddyhome.idea.vim.command.VisualRange
F
- FLAG_CLEAR_STROKES - Static variable in class com.maddyhome.idea.vim.command.Command
- This insert command should clear all saved keystrokes from the current insert
- FLAG_EXPECT_MORE - Static variable in class com.maddyhome.idea.vim.command.Command
- This command should be followed by another command
- FLAG_MOT_CHARACTERWISE - Static variable in class com.maddyhome.idea.vim.command.Command
- FLAG_MOT_EXCLUSIVE - Static variable in class com.maddyhome.idea.vim.command.Command
- FLAG_MOT_INCLUSIVE - Static variable in class com.maddyhome.idea.vim.command.Command
- FLAG_MOT_LINEWISE - Static variable in class com.maddyhome.idea.vim.command.Command
- Motion flags
- FLAG_MULTIKEY_UNDO - Static variable in class com.maddyhome.idea.vim.command.Command
- This command starts a multi-command undo transaction
- FLAG_NO_ARG_RECORDING - Static variable in class com.maddyhome.idea.vim.command.Command
- This flag indicates the command's argument isn't used while recording
- FLAG_NO_REPEAT - Static variable in class com.maddyhome.idea.vim.command.Command
- Special command flag that indicates it is not to be repeated
- FLAG_OP_PEND - Static variable in class com.maddyhome.idea.vim.command.Command
- Special flag used for any mappings involving operators
- FLAG_SAVE_JUMP - Static variable in class com.maddyhome.idea.vim.command.Command
- Indicates that the cursor position should be saved prior to this motion command
- FLAG_SAVE_STROKE - Static variable in class com.maddyhome.idea.vim.command.Command
- This keystroke should be saved as part of the current insert
- FLAG_SEARCH_FWD - Static variable in class com.maddyhome.idea.vim.command.Command
- Search Flags
- FLAG_SEARCH_REV - Static variable in class com.maddyhome.idea.vim.command.Command
- flags - Variable in class com.maddyhome.idea.vim.command.Command
G
- getAction() - Method in class com.maddyhome.idea.vim.command.Command
- Gets the action to execute when the command is run
- getArgument() - Method in class com.maddyhome.idea.vim.command.Argument
- Returns the argument as an object
- getArgument() - Method in class com.maddyhome.idea.vim.command.Command
- Gets the command's argument, if any.
- getCharacter() - Method in class com.maddyhome.idea.vim.command.Argument
- Returns the character if this is a character argument
- getColumns() - Method in class com.maddyhome.idea.vim.command.VisualChange
- getCommand() - Method in class com.maddyhome.idea.vim.command.CommandState
- Gets the currently executing command
- getCount() - Method in class com.maddyhome.idea.vim.command.Command
- Returns the command count.
- getEnd() - Method in class com.maddyhome.idea.vim.command.VisualRange
- getFlags() - Method in class com.maddyhome.idea.vim.command.Command
- Gets the flags associated with the command
- getInstance() - Static method in class com.maddyhome.idea.vim.command.CommandState
- Gets the command state singleton
- getKeys() - Method in class com.maddyhome.idea.vim.command.Command
- getLastChangeCommand() - Method in class com.maddyhome.idea.vim.command.CommandState
- Gets the last command that performed a change
- getLastChangeRegister() - Method in class com.maddyhome.idea.vim.command.CommandState
- Gets the register used by the last saved change command
- getLines() - Method in class com.maddyhome.idea.vim.command.VisualChange
- getMapping() - Method in class com.maddyhome.idea.vim.command.CommandState.State
- getMappingMode() - Method in class com.maddyhome.idea.vim.command.CommandState
- Gets the current key mapping mode
- getMode() - Method in class com.maddyhome.idea.vim.command.CommandState.State
- getMode() - Method in class com.maddyhome.idea.vim.command.CommandState
- Gets the current mode the command is in
- getMotion() - Method in class com.maddyhome.idea.vim.command.Argument
- Returns the motion command if this is a motion command argument
- getRawCount() - Method in class com.maddyhome.idea.vim.command.Command
- Gets to actual count entered by the user, including zero if no count was specified.
- getStart() - Method in class com.maddyhome.idea.vim.command.VisualRange
- getStatusString(int) - Method in class com.maddyhome.idea.vim.command.CommandState
- getString() - Method in class com.maddyhome.idea.vim.command.Argument
- Returns the string if this is a string argument
- getSubMode() - Method in class com.maddyhome.idea.vim.command.CommandState
- getSubmode() - Method in class com.maddyhome.idea.vim.command.CommandState.State
- getType() - Method in class com.maddyhome.idea.vim.command.Argument
- Returns the argument type
- getType() - Method in class com.maddyhome.idea.vim.command.Command
- Gets the command type
- getType() - Method in class com.maddyhome.idea.vim.command.VisualChange
- getType() - Method in class com.maddyhome.idea.vim.command.VisualRange
I
- INSERT - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that insert new text into the editor
- isReadOnlyType(int) - Static method in class com.maddyhome.idea.vim.command.Command
- isRecording - Variable in class com.maddyhome.idea.vim.command.CommandState
- isRecording() - Method in class com.maddyhome.idea.vim.command.CommandState
K
L
- lastChange - Variable in class com.maddyhome.idea.vim.command.CommandState
- lastRegister - Variable in class com.maddyhome.idea.vim.command.CommandState
- lines - Variable in class com.maddyhome.idea.vim.command.VisualChange
M
- MODE_COMMAND - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of being in command mode
- MODE_EX_ENTRY - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of entering an Ex command
- MODE_INSERT - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of being in insert mode
- MODE_REPEAT - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of being in repeat mode
- MODE_REPLACE - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of being in replace mode
- MODE_VISUAL - Static variable in class com.maddyhome.idea.vim.command.CommandState
- Indicates a runtime state of being in visual mode
- MOTION - Static variable in class com.maddyhome.idea.vim.command.Argument
- This is for arguments of type motion command
- MOTION - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that actually move the cursor and can be arguments to operators
- mapping - Variable in class com.maddyhome.idea.vim.command.CommandState.State
- mode - Variable in class com.maddyhome.idea.vim.command.CommandState.State
- mode - Variable in class com.maddyhome.idea.vim.command.CommandState
- modes - Variable in class com.maddyhome.idea.vim.command.CommandState
- motionArg - Variable in class com.maddyhome.idea.vim.command.Argument
N
O
- OTHER_READONLY - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents other types of commands
- OTHER_WRITABLE - Static variable in class com.maddyhome.idea.vim.command.Command
- ourInstance - Static variable in class com.maddyhome.idea.vim.command.CommandState
P
- PASTE - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that paste text into the editor
- popState() - Method in class com.maddyhome.idea.vim.command.CommandState
- pushState(int, int, int) - Method in class com.maddyhome.idea.vim.command.CommandState
R
- RESET - Static variable in class com.maddyhome.idea.vim.command.Command
- reset() - Method in class com.maddyhome.idea.vim.command.CommandState
- Resets the command, mode, visual mode, and mapping mode to initial values.
S
- SELECT_REGISTER - Static variable in class com.maddyhome.idea.vim.command.Command
- Represents commands that select the register
- STRING - Static variable in class com.maddyhome.idea.vim.command.Argument
- This is for arguments of type string
- SUBMODE_INSERT - Static variable in class com.maddyhome.idea.vim.command.CommandState
- SUBMODE_REPLACE - Static variable in class com.maddyhome.idea.vim.command.CommandState
- SUBMODE_SINGLE_COMMAND - Static variable in class com.maddyhome.idea.vim.command.CommandState
- saveLastChangeCommand(Command) - Method in class com.maddyhome.idea.vim.command.CommandState
- Saves the last command that performed a change.
- setAction(AnAction) - Method in class com.maddyhome.idea.vim.command.Command
- Sets a new action for the command
- setArgument(Argument) - Method in class com.maddyhome.idea.vim.command.Command
- Sets the command's argument to the new value
- setCommand(Command) - Method in class com.maddyhome.idea.vim.command.CommandState
- This maintains the current command that is being executed
- setCount(int) - Method in class com.maddyhome.idea.vim.command.Command
- Updates the command count to the new value
- setFlags(int) - Method in class com.maddyhome.idea.vim.command.Command
- Sets new flags for the command
- setKeys(List) - Method in class com.maddyhome.idea.vim.command.Command
- setRecording(boolean) - Method in class com.maddyhome.idea.vim.command.CommandState
- setSubMode(int) - Method in class com.maddyhome.idea.vim.command.CommandState
- setSubmode(int) - Method in class com.maddyhome.idea.vim.command.CommandState.State
- start - Variable in class com.maddyhome.idea.vim.command.VisualRange
- strArg - Variable in class com.maddyhome.idea.vim.command.Argument
- submode - Variable in class com.maddyhome.idea.vim.command.CommandState.State
T
- toString() - Method in class com.maddyhome.idea.vim.command.CommandState.State
- toggleInsertOverwrite() - Method in class com.maddyhome.idea.vim.command.CommandState
- Toggles the insert/overwrite state.
- type - Variable in class com.maddyhome.idea.vim.command.Argument
- type - Variable in class com.maddyhome.idea.vim.command.Command
- type - Variable in class com.maddyhome.idea.vim.command.VisualChange
- type - Variable in class com.maddyhome.idea.vim.command.VisualRange
U
- updateStatus() - Method in class com.maddyhome.idea.vim.command.CommandState
V
- VisualChange - class com.maddyhome.idea.vim.command.VisualChange.
- VisualChange(int, int, int) - Constructor for class com.maddyhome.idea.vim.command.VisualChange
- VisualRange - class com.maddyhome.idea.vim.command.VisualRange.
- VisualRange(int, int, int) - Constructor for class com.maddyhome.idea.vim.command.VisualRange
A C D E F G I K L M N O P R S T U V
|
|||||||||
| Home >> All >> com >> maddyhome >> idea >> vim >> [ command overview ] | PREV NEXT | ||||||||