AMOS:Call Editor commands

From Amiga Coding
Revision as of 03:33, 18 June 2008 by Spellcoder (talk | contribs) (about 2/3th of the list completed)
Jump to: navigation, search
codeequateresultreturn values
1AEd_UpMoves the cursor up one line-
2AEd_DownMoves the cursor down one line.-
3AEd_LeftMoves the cursor left one character.-
4AEd_RightMoves the cursor right one character.-
5AEd_TopPageMoves the cursor to the top of the current window.-
6AEd_BottomPageMove the cursor to the bottom of the current window.-
7AEd_WordLeftMove the cursor to the beginning of the previous word.-
8AEd_WordRightMove the cursor to the beginning of the next word.-
9AEd_PageUpMove the cursor up one page in the text.-
10AEd_PageDownMove the cursor down one page in the text.-
11AEd_StartLineMove the cursor to the start of the current line.-
12AEd_EndLineMove the cursor to the end of the current line.-
13AEd_WindowUpMoves the current window up.-
14AEd_WindowDownMoves the current window down.-
15AEd_WindowSmallerReduce the size of the current window.-
16AEd_WindowBiggerIncrease the size of the current window.-
17AEd_TopOfTextMove the cursor to the top of the text.-
18AEd_BottomOfTextMove the cursor to the end of the text.-
19AEd_ReturnPerforms a <RETURN>-
20AEd_BackSpacePerforms a <BACKSPACE>: delete one character to the left of the cursor.-
21AEd_DeletePerforms a <DELETE>: delete one character to the right of the cursor.-
22AEd_ClrLineClears the entire current line.-
23AEd_DelLineDelete the current line, and scroll up the rest of the text <CONTROL-Y>-
24AEd_TabInsert one tab <TAB>-
25AEd_SetTabSet the current tab value.PAR= new tab value.
29AEd_InsertLineInsert one empty line at the current cursor position <F10>-
30AEd_DelToEndOfLineDelete to the end of the current line <CONTROL-DEL>-
31AEd_PreviousLabelGo to previous label.-
32AEd_NextLabelGo to next label.-
33AEd_LoadLoad a new program in the current window.PAR$= filename of the program to load.
PAR= answer to the requester "Program not saved, save it?"
0= CANCEL / 1=YES / 2=NO
34AEd_SaveAsSave the current program with a new name.PAR$= new filename.
35AEd_SaveSave the current program.PAR$= optional name if program is not named.
36AEd_DelWordRightDelete the word to the right of the cursor.-
37AEd_DelWordLeftDelete the word to the left of the cursor.-
38AEd_HideHide the current program.-
39AEd_SetSystemMark1Set system mark number 1-
40AEd_SetSystemMark2Set system mark number 2.-
41AEd_SetSystemMark3Set system mark number 3.-
42AEd_SetMark1Set mark number 1.-
43AEd_SetMark2Set mark number 2.-
44AEd_SetMark3Set mark number 3.-
45AEd_SetMark4Set mark number 4.-
46AEd_SetMark5Set mark number 5.-
47AEd_SetMark6Set mark number 6.-
49AEd_GotoSystemMark1Move the cursor to the system mark number 1.-
50AEd_GotoSystemMark2Move the cursor to the system mark number 2.-
51AEd_GotoSystemMark3Move the cursor to the system mark number 3.-
52AEd_GotoMark1Move the cursor to the mark number 1.-
53AEd_GotoMark2Move the cursor to the mark number 2.-
54AEd_GotoMark3Move the cursor to the mark number 3.-
55AEd_GotoMark4Move the cursor to the mark number 4.-
56AEd_GotoMark5Move the cursor to the mark number 5.-
57AEd_GotoMark6Move the cursor to the mark number 6.-
59AEd_BlocOnOffToggle the block mode on/off.-
60AEd_ForgetForget the currently stored block.-
61AEd_OpenLoadOpens a new window, and loads the specified program into it. PAR$= file name to load
PAR= answer to "Buffer to small" requester. 0=NO / 1=YES
62AEd_BlocCutCut the currently highlighted block.-
63AEd_BlocPastePaste the currently stored block.-
64AEd_DelToStartOfLineDelete to the start of the current line.-
65AEd_UndoPerforms one step of UNDO.-