Basics.html 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <html>
  2. <head>
  3. <title>
  4. Basics
  5. </title>
  6. </head>
  7. <body bgcolor="#FFFFFF" vlink="silver" alink="navy" link="navy">
  8. <table width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
  9. <tr>
  10. <td valign="bottom">
  11. <div align="left">
  12. <b><font face="Tahoma" size="3" color="navy">Basics</font></b>
  13. <br>
  14. <font face="Tahoma" size="2">
  15. <a href="TopicGroup_PWL.html">Topic Groups</a>
  16. </font>
  17. </div>
  18. </td>
  19. <td>
  20. <font face="Tahoma" size="1" color="silver">
  21. <div align="right" valign="top">
  22. <a href="http://www.lua.org">Lua homepage</a>
  23. </div>
  24. </font>
  25. </td>
  26. </tr>
  27. <tr valign="top">
  28. <td colspan="2">
  29. <hr size="1" color="#000000" align="top">
  30. <br>
  31. <br>
  32. <font face="Tahoma" size="2">
  33. <p style="text-align: justify">
  34. Many basic actions and features are available in LuaEdit. The shortcuts and icons of those features and
  35. actions have been adapted so that they can looks and reacts the same way as they do in Visual Studio .Net
  36. <sup>®</sup>. This section will briefly describe them.
  37. <br>
  38. <br>
  39. <b>File handling</b><br>
  40. LuaEdit recognize two type of file: *.lpr extension standing for "Lua Project" and *.lua extension standing
  41. for "Lua Units". To open any *.lpr files, select the menu "File/Open Lua Project..." or the menu "File/Open File...".
  42. To open any *.lua files, select the menu "File/Open File...". The selected file will be added to the "Project Tree Window".
  43. The menu "File/Save" will save the currently edited unit on its originally opened localtion. The menu "File/Save As..."
  44. will display a save dialog wich allow to save the file anywhere you can. The menu "File/Save All" will save any modified
  45. or new units and projects. The menu "File/Save Project As..." will display a save dialog so that you can
  46. save the current "Active Project" anywhere you can. New units and projects can be created via the menu "File/New/Unit" and
  47. "File/New/Project". The menu "File/Reopen" contains all recently opened projects and units. Simply click on any of
  48. these to reopen it. The menu "File/Print Steup..." will display the printing options and the menu "File/Print..." will
  49. display a print dialog to print the currently edited unit.
  50. <br>
  51. <br>
  52. <b>Code handling</b><br>
  53. Luaedit exposed all basic code handling actions. The menu "Edit/Undo" will undo the lastest changes and the menu "Edit/Redo"
  54. will redo the lastest *undoed* changes. The menu "Edit/Cut" will cut the current selection from the currently edited unit and
  55. will add this text in the clipboard. The menu "Edit/Copy" will copy the current selection from the currently edited unit and
  56. will add this text in the clipboard. The menu "Edit/Paste" will insert the text in the clipboard at the currrent cursor position
  57. of the currently edited unit. The "Edit/Select All" menu will select all the text present in the currently edited unit. The
  58. "Edit/Search..." menu will display a search dialog so that you can easily find the text you are looking for. The menu
  59. "Edit/Replace..." will display a search and replace dialog so that you can easily replace the text you are looking for. The
  60. "Edit/Search Again" menu will continue the previous search keeping the same given parameters. The menu "Edit/Indent Selection"
  61. will increase the current selection of the currently edited unit of one level according to your tab settings. The menu "Edit/Unindent Selection"
  62. will decrease the current selection of the currently edited unit of one level according to your tab settings. The "Edit/Go to Line..."
  63. menu will display a dialog to enter the line number where to go in the currently edited unit.
  64. </p>
  65. <br>
  66. </font>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td colspan="2">
  71. <font face="Tahoma" size="1" color="silver">
  72. <hr size="1" color="#000000">
  73. <div align="right">
  74. <a href="http://luaedit.luaforge.net">http://luaedit.luaforge.net</a>
  75. <br>
  76. © Copyright 2004-2005 LuaEdit
  77. <br>
  78. LuaEdit v 2.0 for Lua 5.0
  79. </div>
  80. </font>
  81. </td>
  82. </tr>
  83. </table>
  84. </body>
  85. </html>