Show
Ignore:
Timestamp:
07/09/08 06:19:50 (5 months ago)
Author:
rob
Message:

Updated user manual with sections on preferences and running
* added placeholder text in majormodes.rst

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/manual/running.rst

    r1363 r1475  
    33************************* 
    44 
    5 Once peppy is installed_, starting the application depends how you installed 
     5Once peppy is installed__, starting the application depends how you installed 
    66the code. 
    77 
    8 .. _installed: /download.html 
     8__ /download.html 
    99 
    1010Downloaded from source: 
     
    9696------------- 
    9797 
     98Peppy provides several commands to open files, from the traditional GUI file 
     99dialog using the File -> Open -> Open File menu command, to the more emacs- 
     100like File -> Open -> Open File using Minibuffer command (bound to C-x C-f in 
     101emacs keybinding mode). 
     102 
     103 
     104Editing Files 
     105------------- 
     106 
     107Once a file has been opened, a new tab will appear in the window that shows 
     108the GUI that is used to edit that type of file.  There are specific types of 
     109editing modes, called :ref:`major modes <majormodes>`, for different types 
     110of files.  For instance, plain text files are editing using the Fundamental 
     111major mode, while python source files are edited using the Python major mode. 
     112Both these major modes are similar is that they use a text editing component 
     113(called the StyledTextCtrl in wxPython, which is based on the Scintilla__ 
     114source code editing component).  However, unlike most editors, text files 
     115are not the only thing that can be edited.  There are major modes for editing 
     116:ref:`binary files <hexedit>`, and even :ref:`hyperspectral images <hsi>`. 
     117 
     118__ http://www.scintilla.org 
     119 
    98120Saving Files 
    99121------------ 
    100122 
     123After editing the file, it must be saved before the changes can be made 
     124permanent.  Like opening files, there are several ways to save the file. 
     125You can use the File -> Save to save the file if you want to overwrite your 
     126changes, or File -> Save As to pull up a traditional file save dialog to save 
     127it to a new file.  Some major modes provide other ways to save the file in the 
     128File -> Export menu.