Difference between revisions of "AMOS:Call Editor commands"

From Amiga Coding
Jump to: navigation, search
(added part of the list)
 
(about 2/3th of the list completed)
Line 26: Line 26:
 
<tr><td>24</td><td>AEd_Tab</td><td>Insert one tab <TAB></td><td>-</td></tr>
 
<tr><td>24</td><td>AEd_Tab</td><td>Insert one tab <TAB></td><td>-</td></tr>
 
<tr><td>25</td><td>AEd_SetTab</td><td>Set the current tab value.</td><td>PAR= new tab value.</td></tr>
 
<tr><td>25</td><td>AEd_SetTab</td><td>Set the current tab value.</td><td>PAR= new tab value.</td></tr>
 +
<tr><td>29</td><td>AEd_InsertLine</td><td>Insert one empty line at the current cursor position <F10></td><td>-</td></tr>
 +
<tr><td>30</td><td>AEd_DelToEndOfLine</td><td>Delete to the end of the current line <CONTROL-DEL></td><td>-</td></tr>
 +
<tr><td>31</td><td>AEd_PreviousLabel</td><td>Go to previous label.</td><td>-</td></tr>
 +
<tr><td>32</td><td>AEd_NextLabel</td><td>Go to next label.</td><td>-</td></tr>
 +
<tr><td>33</td><td>AEd_Load</td><td>Load a new program in the current window.</td><td>PAR$= filename of the program to load.<br />PAR= answer to the requester "Program not saved, save it?"<br />0= CANCEL / 1=YES / 2=NO</td></tr>
 +
<tr><td>34</td><td>AEd_SaveAs</td><td>Save the current program with a new name.</td><td>PAR$= new filename.</td></tr>
 +
<tr><td>35</td><td>AEd_Save</td><td>Save the current program.</td><td>PAR$= optional name if program is not named.</td></tr>
 +
<tr><td>36</td><td>AEd_DelWordRight</td><td>Delete the word to the right of the cursor.</td><td>-</td></tr>
 +
<tr><td>37</td><td>AEd_DelWordLeft</td><td>Delete the word to the left of the cursor.</td><td>-</td></tr>
 +
<tr><td>38</td><td>AEd_Hide</td><td>Hide the current program.</td><td>-</td></tr>
 +
<tr><td>39</td><td>AEd_SetSystemMark1</td><td>Set system mark number 1</td><td>-</td></tr>
 +
<tr><td>40</td><td>AEd_SetSystemMark2</td><td>Set system mark number 2.</td><td>-</td></tr>
 +
<tr><td>41</td><td>AEd_SetSystemMark3</td><td>Set system mark number 3.</td><td>-</td></tr>
 +
<tr><td>42</td><td>AEd_SetMark1</td><td>Set mark number 1.</td><td>-</td></tr>
 +
<tr><td>43</td><td>AEd_SetMark2</td><td>Set mark number 2.</td><td>-</td></tr>
 +
<tr><td>44</td><td>AEd_SetMark3</td><td>Set mark number 3.</td><td>-</td></tr>
 +
<tr><td>45</td><td>AEd_SetMark4</td><td>Set mark number 4.</td><td>-</td></tr>
 +
<tr><td>46</td><td>AEd_SetMark5</td><td>Set mark number 5.</td><td>-</td></tr>
 +
<tr><td>47</td><td>AEd_SetMark6</td><td>Set mark number 6.</td><td>-</td></tr>
 +
<tr><td>49</td><td>AEd_GotoSystemMark1</td><td>Move the cursor to the system mark number 1.</td><td>-</td></tr>
 +
<tr><td>50</td><td>AEd_GotoSystemMark2</td><td>Move the cursor to the system mark number 2.</td><td>-</td></tr>
 +
<tr><td>51</td><td>AEd_GotoSystemMark3</td><td>Move the cursor to the system mark number 3.</td><td>-</td></tr>
 +
<tr><td>52</td><td>AEd_GotoMark1</td><td>Move the cursor to the mark number 1.</td><td>-</td></tr>
 +
<tr><td>53</td><td>AEd_GotoMark2</td><td>Move the cursor to the mark number 2.</td><td>-</td></tr>
 +
<tr><td>54</td><td>AEd_GotoMark3</td><td>Move the cursor to the mark number 3.</td><td>-</td></tr>
 +
<tr><td>55</td><td>AEd_GotoMark4</td><td>Move the cursor to the mark number 4.</td><td>-</td></tr>
 +
<tr><td>56</td><td>AEd_GotoMark5</td><td>Move the cursor to the mark number 5.</td><td>-</td></tr>
 +
<tr><td>57</td><td>AEd_GotoMark6</td><td>Move the cursor to the mark number 6.</td><td>-</td></tr>
 +
<tr><td>59</td><td>AEd_BlocOnOff</td><td>Toggle the block mode on/off.</td><td>-</td></tr>
 +
<tr><td>60</td><td>AEd_Forget</td><td>Forget the currently stored block.</td><td>-</td></tr>
 +
<tr><td>61</td><td>AEd_OpenLoad</td><td>Opens a new window, and loads the specified program into it. </td><td>PAR$= file name to load<br />PAR= answer to "Buffer to small" requester. 0=NO / 1=YES</td></tr>
 +
<tr><td>62</td><td>AEd_BlocCut</td><td>Cut the currently highlighted block.</td><td>-</td></tr>
 +
<tr><td>63</td><td>AEd_BlocPaste</td><td>Paste the currently stored block.</td><td>-</td></tr>
 +
<tr><td>64</td><td>AEd_DelToStartOfLine</td><td>Delete to the start of the current line.</td><td>-</td></tr>
 +
<tr><td>65</td><td>AEd_Undo</td><td>Performs one step of UNDO.</td><td>-</td></tr>
 
</table>
 
</table>

Revision as of 03:33, 18 June 2008

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.-