Editor Keys List   .



Keyboard Shortcut Functions / Editor Special Features Below... 

 

[Ctrl][PgDn] > Jumps to end of Source

[Ctrl][PgUp] > Jumps to To of Source

[Ctrl][C] > Copy Selection to ClipBoard

[Ctrl][Ins] > Copy Selection to ClipBoard

[Ctrl][X] > Delete Selection (and Copy Selection to ClipBoard)

[Ctrl][Back] > Delete Selection (and Copy Selection to ClipBoard)

[Ctrl][D] >    Delete Selection (and do not Copy Selection to ClipBoard)

[Ctrl][Del] >    Delete Selection (and do not Copy Selection to ClipBoard)

[Ctrl][Space] >    Code_Completion


[Ctrl][V] > Paste ClipBord

[Shift][Del] > Delete Selected Block

[Shift][Ins] > Paste ClipBoard

[Ctrl][Z] > Undo

[Ctrl][Shift][Z] > Redo

[Ctrl][S] > Saves the Source.asm file on the fly. 

[Ctrl][K] > BackUp the PE on the fly. 

[Ctrl][Y] > Delete the whole Caret Line, if  'On' in [Configuration]

[Ctrl][Arrow Keys] > Words jumps

[Shift][Arrow Keys] > Selection

[Shift][BackSpace] > Delete previous Chars up to Auto-Indent Alignment.


[F1] > Runs B_U_Asm

[F2] > User defined Launcher

[F3] > Search Next

[F4] > Substitute to Double-Left-Click in the margin for Mouse_BreakPoints

[F5] > Compile

[F6] > Run

[F8] > Draw a line

[F9] > Toggles the Debugger Mem-View On / Off

[F11] > Saves the current pos for F12 switch

[F12] > Switches on and off the F11 saved Pos


With Block Selection holding full Lines:


[Tab] > Indent encrease

[Shift][Tab] > Indent decrease


(Both with respect of Labels at first row, if any).



The name is ''Source Editor'' not ''Text Editor''. I mean that you should consider some unusual text features from the point of view of the specific requirements for Sources editing, the first one being security. For example, this Editor has no automatic Blocks replacement feature (if you select a Block and hit [Del] or [BackSpace], the block will not be erased. 


The Caret management, too, is completely different from the usual one under Windows: Under Windows, the Caret is Text dependent. With such Caret behavior, the control of your own input may easily be lost. This is why I implemented an old fashioned screen dependent Caret management, which is much more secure. Also, the first [PgUp] / [PgDn] hit have as its first effect to move the Cursor to the top or bottom of the actual page before entering in the real pages up or down mode.


~~~~~~~