Print
Will dump the current file to the printer. The printer device can be configured in the Preferences editor.
Cut
Remove the marked block of text and place it in the clipboard. This function is mirrored in the Editor buttons and the Editor popup menu.
Copy
Duplicate the marked block of text in the clipboard. This function is mirrored in the Editor buttons and the Editor popup menu.
Paste
Copy the contents of the clipboard at the current cursor position. This function is mirrored in the Editor buttons and the Editor popup menu.
Undo
Revert the last change made to the text. This function is mirrored in the Editor buttons.
Redo
If a change was reverted, it may be possible to carry out the change again. This function is mirrored in the Editor buttons.
Jump to matching
If the cursor is positioned at a character that marks a "scope" like brackets and braces, selecting this menu will cause the cursor to jump to its counterpart. This makes it very easy to follow where blocks of code begin and end. This option is also available from the Editor popup menu.
Indent marked
All lines in the currently marked text block will be shifted a tab size amount of characters to the right.
Outdent marked
All lines in the currently marked block will be shifted a tab size amount of characters to the left, if possible.
Convert TABs to spaces
This is a "one-shot" operation for those that don't like tabulations in their code. It simply converts all tabulations in the file to the number of spaces specified. The width of a tabulation can be set from the Project settings window.
Find...
Open the Search window and find a specified string of characters in the current file. This function is mirrored in the Editor buttons and the Editor popup menu.
Goto line...
Specify a line that the cursor should be moved to in the current file. This function is mirrored in the Editor buttons.
Goto function...
The currently marked block is treated as a function name. The entire project is searched for this function, and if found, will cause the file containing it to become current. The cursor will be moved to the first line of that function. This is also possible by holding down either "Shift" key while double-clicking to highlight the block that represents a local function.
Find function...
Specify a function name to search for. If found, the file containing that function is made current, and the cursor moved to the first line of that function. This search is case-sensitive.
back to the top
|