Skip to main contentModule actions
Source - Copy
- Copies the selected text to the clipboard.
- Cut
- Cuts the current selection: copies it to the clipboard and removes it from the editor.
- Delete
- Deletes the selected text or the character before the cursor.
- DeleteLine
- Deletes the entire line under the cursor.
- Duplicate
- Duplicates the selected text or the current line if no selection exists.
- Indent
- Inserts indentation at the beginning of the current line or selected lines.
- InsertNewline
- Inserts a newline at the cursor with automatic indentation.
- InsertText
- Inserts arbitrary text at the cursor, replacing the selection if any.
- MoveDown
- Moves the cursor one line down.
- MoveLeft
- Moves the cursor one character to the left.
- MoveRight
- Moves the cursor one character to the right.
- MoveUp
- Moves the cursor one line up.
- Paste
- Pastes text from the clipboard at the current cursor position.
- Redo
- Redoes the last undone edit in the code buffer.
- SelectAll
- Selects the entire text in the editor.
- ToggleComment
- UnIndent
- Removes one indentation level from the start of the current line or selected lines.
- Undo
- Undoes the last edit in the code buffer.
- Action