1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <html>
- <head>
- <title>
- Basics
- </title>
- </head>
- <body bgcolor="#FFFFFF" vlink="silver" alink="navy" link="navy">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" summary="">
- <tr>
- <td valign="bottom">
- <div align="left">
- <b><font face="Tahoma" size="3" color="navy">Basics</font></b>
- <br>
- <font face="Tahoma" size="2">
- <a href="TopicGroup_PWL.html">Topic Groups</a>
- </font>
- </div>
- </td>
- <td>
- <font face="Tahoma" size="1" color="silver">
- <div align="right" valign="top">
- <a href="http://www.lua.org">Lua homepage</a>
- </div>
- </font>
- </td>
- </tr>
- <tr valign="top">
- <td colspan="2">
- <hr size="1" color="#000000" align="top">
- <br>
- <br>
- <font face="Tahoma" size="2">
- <p style="text-align: justify">
- Many basic actions and features are available in LuaEdit. The shortcuts and icons of those features and
- actions have been adapted so that they can looks and reacts the same way as they do in Visual Studio .Net
- <sup>®</sup>. This section will briefly describe them.
- <br>
- <br>
- <b>File handling</b><br>
- LuaEdit recognize two type of file: *.lpr extension standing for "Lua Project" and *.lua extension standing
- for "Lua Units". To open any *.lpr files, select the menu "File/Open Lua Project..." or the menu "File/Open File...".
- To open any *.lua files, select the menu "File/Open File...". The selected file will be added to the "Project Tree Window".
- The menu "File/Save" will save the currently edited unit on its originally opened localtion. The menu "File/Save As..."
- will display a save dialog wich allow to save the file anywhere you can. The menu "File/Save All" will save any modified
- or new units and projects. The menu "File/Save Project As..." will display a save dialog so that you can
- save the current "Active Project" anywhere you can. New units and projects can be created via the menu "File/New/Unit" and
- "File/New/Project". The menu "File/Reopen" contains all recently opened projects and units. Simply click on any of
- these to reopen it. The menu "File/Print Steup..." will display the printing options and the menu "File/Print..." will
- display a print dialog to print the currently edited unit.
- <br>
- <br>
- <b>Code handling</b><br>
- Luaedit exposed all basic code handling actions. The menu "Edit/Undo" will undo the lastest changes and the menu "Edit/Redo"
- will redo the lastest *undoed* changes. The menu "Edit/Cut" will cut the current selection from the currently edited unit and
- will add this text in the clipboard. The menu "Edit/Copy" will copy the current selection from the currently edited unit and
- will add this text in the clipboard. The menu "Edit/Paste" will insert the text in the clipboard at the currrent cursor position
- of the currently edited unit. The "Edit/Select All" menu will select all the text present in the currently edited unit. The
- "Edit/Find..." menu will display a find dialog so that you can easily find the text you are looking for. The menu
- "Edit/Replace..." will display a find and replace dialog so that you can easily replace the text you are looking for. The
- "Edit/Find Again" menu will continue the previous search keeping the same given parameters. The menu "Edit/Find in Files" will
- display a find in files dialog so that you can find text contained in some files of your hard drive with ease (NOTE: the find in files
- engine only find text in *.lua files if any). The menu "Edit/Indent Selection" will increase the current selection of the currently edited unit of one level according to your tab settings.
- The menu "Edit/Unindent Selection" will decrease the current selection of the currently edited unit of one level according to your tab settings.
- The "Edit/Comment Selection" and the "Edit/Uncomment Selection" menus will comment/uncomment the selected text in one click. The "Edit/Uppercase Selection" and
- the "Edit/Lowercase Selection" menus will set all characters of the current selection to upper or lower case. The menu "Edit/Goto Last Edited"
- will bring you to the last edited line. The "Edit/Go to Line..." menu will display a dialog to enter the line number where to go in the currently edited unit.
- </p>
- <br>
- </font>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <font face="Tahoma" size="1" color="silver">
- <hr size="1" color="#000000">
- <div align="right">
- <a href="http://luaedit.luaforge.net">http://luaedit.luaforge.net</a>
- <br>
- © Copyright 2004-2005 LuaEdit
- <br>
- LuaEdit v 2.0 for Lua 5.0
- </div>
- </font>
- </td>
- </tr>
- </table>
- </body>
- </html>
|