Edit menu
The Edit menu provides commands for manipulating text in the editor.
BasinC uses the .bas file format to store program text on the Clipboard.
Undo
Reverses the effects of the most recent edit.
Redo
Repeats the edit that was just undone. This command is only available immediately after an undo operation.
Cut
Removes the selected text and places it on the Clipboard. The clipped text is stored as .bas format, so any control characters in the text, or characters from the Spectrum ASCII set will be converted to escape characters.
Copy
Copies the selected text to the Clipboard. As with the cut option, text is stored in the .bas format.
Paste
Inserts any text found on the Windows system clipboard into the program at the current cursor position. The text will be processed for .bas format escape codes, and then will be inserted using one of two methods:
If the text contains no Return (CHR$ 13) characters, then it will be inserted as one line.
If the text contains more than one line, then the Add Code Window will be shown, with the clipboard text in the edit field as plain text. You can edit this text to your liking, and it will then be tested for syntax validity before being inserted line by line into your program. If any of the lines will overwrite any current program lines, then (assuming that you have enabled Line Overwrite Protection in the relevant Options Window page) BasinC will warn you with the option to abort the operation, ignore the line, or replace the old line in the program.
Delete
Removes the selected text. Does not store a copy of the text on the Windows clipboard.
Copy Listing
Copies the entire program listing to the Clipboard. Unlike a normal save in .bas format, this does not include any variables in memory.