| Value | Meaning |
|---|---|
| None0 | |
| Left1000 | move cursor one char left |
| SelectLeft | move cursor one char left with selection |
| Right | move cursor one char right |
| SelectRight | move cursor one char right with selection |
| Up | move cursor one line up |
| SelectUp | move cursor one line up with selection |
| Down | move cursor one line down |
| SelectDown | move cursor one line down with selection |
| WordLeft | move cursor one word left |
| SelectWordLeft | move cursor one word left with selection |
| WordRight | move cursor one word right |
| SelectWordRight | move cursor one word right with selection |
| PageUp | move cursor one page up |
| SelectPageUp | move cursor one page up with selection |
| PageDown | move cursor one page down |
| SelectPageDown | move cursor one page down with selection |
| PageBegin | move cursor to the beginning of page |
| SelectPageBegin | move cursor to the beginning of page with selection |
| PageEnd | move cursor to the end of page |
| SelectPageEnd | move cursor to the end of page with selection |
| LineBegin | move cursor to the beginning of line |
| SelectLineBegin | move cursor to the beginning of line with selection |
| LineEnd | move cursor to the end of line |
| SelectLineEnd | move cursor to the end of line with selection |
| DocumentBegin | move cursor to the beginning of document |
| SelectDocumentBegin | move cursor to the beginning of document with selection |
| DocumentEnd | move cursor to the end of document |
| SelectDocumentEnd | move cursor to the end of document with selection |
| DelPrevChar | delete char before cursor (backspace) |
| DelNextChar | delete char after cursor (del key) |
| DelPrevWord | delete word before cursor (ctrl + backspace) |
| DelNextWord | delete char after cursor (ctrl + del key) |
| InsertNewLine | insert new line (Enter) |
| PrependNewLine | insert new line before current position (Ctrl+Enter) |
| AppendNewLine | insert new line after current position (Ctrl+Enter) |
| ToggleReplaceMode | Turn On/Off replace mode |
| Copy | Copy selection to clipboard |
| Cut | Cut selection to clipboard |
| Paste | Paste selection from clipboard |
| Undo | Undo last change |
| Redo | Redo last undoed change |
| Tab | Tab (e.g., Tab key to insert tab character or indent text) |
| BackTab | Tab (unindent text, or remove whitespace before cursor, usually Shift+Tab) |
| Indent | Indent text block or single line |
| Unindent | Unindent text |
| SelectAll | Select whole content (usually, Ctrl+A) |
| ScrollLineUp | Scroll one line up (not changing cursor) |
| ScrollLineDown | Scroll one line down (not changing cursor) |
| ScrollPageUp | Scroll one page up (not changing cursor) |
| ScrollPageDown | Scroll one page down (not changing cursor) |
| ScrollLeft | Scroll window left |
| ScrollRight | Scroll window right |
| ZoomIn | Zoom in editor font |
| ZoomOut | Zoom out editor font |
| ToggleLineComment | Togle line comment |
| ToggleBlockComment | Toggle block comment |
| DeleteLine | Delete current line |
| InsertLine | Insert line |
| ToggleBookmark | Toggle bookmark in current line |
| GoToNextBookmark | move cursor to next bookmark |
| GoToPreviousBookmark | move cursor to previous bookmark |
| Find | Find text |
| Replace | Replace text |
| FindNext | Find next occurence - continue search forward |
| FindPrev | Find previous occurence - continue search backward |
Editor action codes