Adding Text
The editor has two text input modes:
- Insert mode As text is entered it is inserted
at the current cursor position and any text to the right of the cursor is
shifted along.
- Overwrite mode As text is entered it replaces
any text to the right of the cursor.
To toggle between insert and overwrite mode
- Press the Ins button to toggle input mode.
- If overwrite mode is enabled the OVR status indicator will be enabled
and the overwrite mode cursor will be visible.
Deleting Text
To delete one character to the left of the cursor
To delete one character to the right of the cursor
To delete one word to the left of the cursor
- Hold Ctrl and press the Backspace key.
To delete one word to the right of the cursor
- Hold Ctrl and press the Del key.
To delete an area of selected text
- Select area of text to be deleted.
- Press Backspace or Del key.
Using The Clipboard
To copy selected text from the current editor and place them onto the clipboard
- Select Edit | Copy menu item.
To copy selected text from the current editor and append them onto the end
of the clipboard
- Select Edit | Clipboard | Copy Append menu item.
To copy whole lines from the current editor and place them onto the clipboard
- Select Edit | Clipboard | Copy Lines menu item.
To copy whole lines from the current editor and append them onto the end of
the clipboard
- Select Edit | Clipboard | Copy Lines Append menu item.
To copy bookmarked lines from the current editor place them onto the clipboard
- Select Edit | Clipboard | Copy Marked Lines menu item.
To copy bookmarked lines from the current editor and append them onto the
end of the clipboard
- Select Edit | Clipboard | Copy Marked Lines Append menu item.
To cut selected text from the current editor and place them onto the clipboard
- Select Edit | Cut menu item.
To cut selected text from the current editor and append them onto the end
of the clipboard
- Select Edit | Clipboard | Cut Append menu item.
To cut whole lines from the current editor and place them onto the clipboard
- Select Edit | Clipboard | Cut Lines menu item.
To cut whole lines from the current editor and append them onto the end of
the clipboard
- Select Edit | Clipboard | Cut Lines Append menu item.
To cut bookmarked lines from the current editor and place them onto the clipboard
- Select Edit | Clipboard | Cut Marked Lines menu item.
To cut bookmarked lines from the current editor and append them onto the end
of the clipboard
- Select Edit | Clipboard | Cut Marked Lines Append menu item.
To paste text into current editor from clipboard
- Select Edit | Paste menu item.
To paste text into a new editor from clipboard
- Select Edit | Clipboard | Paste As New Document menu item.
To clear the clipboard
- Select Edit | Clipboard | Clear Clipboard menu item.
Undo And Redo
The editor has an undo facility to undo previous editing actions. The redo
feature can be used to re-apply previously undone editing actions.
To undo editing actions
- Select Edit | Undo menu item.
To redo editing actions
- Select Edit | Redo menu item.
Indentation
The editor uses the Tab key to increase or decrease the indentation
level. The indentation size can be altered in the editor's Language Properties
window.
To change the indentation size
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Indent Size property for the required language.
The editor can optionally use tab characters to fill whitespace when indenting.
The use of tabs for filling whitespace can be selected in the editor's Language
Properties window.
To enable or disable the use of tab characters when indenting
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Use Tabs property for the required language. Note that changing
this setting does not add or remove existing tabs from files, the change will
only effect new indents.
The editor can provide assistance with source code indentation while inserting
text. There are three levels of indentation assistance:
- None. The indentation of the source code is left to the user.
- Indent (default). The editor maintains the current indentation level. When
Return or Enter are pressed the editor automatically moves the
cursor to the indentation level of the previous line.
- Smart. The editor analyses the source code to compute the appropriate indentation
level for the line. The number of lines before the current cursor position
that are analysed for context can be altered. The smart indent mode can be
configured to either indent open and closing braces or the lines following
the braces.
To change the indentation mode
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Indent Mode property for the required language.
To change whether opening braces are indented in smart indent mode
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Indent Opening Brace property for the required language.
To change whether closing braces are indented in smart indent mode
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Indent Closing Brace property for the required language.
To change number of previous line used for context in smart indent mode
- Select the Properties Window.
- Select the Language Properties pane.
- Set the Indent Context Lines property for the required language.