Go to file
moculus d5c005a692 more method clean-up; bug fixes for shell junk
--HG--
branch : pmacs2
2008-03-17 07:16:15 +00:00
code_examples improving token names 2008-03-16 14:53:35 +00:00
method more method clean-up; bug fixes for shell junk 2008-03-17 07:16:15 +00:00
mode more method clean-up; bug fixes for shell junk 2008-03-17 07:16:15 +00:00
BUGS --HG-- 2008-03-01 17:20:04 +00:00
IDEAS changes to move toward python3 2008-03-16 20:08:37 +00:00
MODES doc updates 2007-10-20 22:01:47 +00:00
README --HG-- 2008-03-16 06:16:41 +00:00
aes.py changes to move toward python3 2008-03-16 20:08:37 +00:00
application.py more method clean-up; bug fixes for shell junk 2008-03-17 07:16:15 +00:00
buffer.py v2.6 clean-up 2008-03-16 20:26:32 +00:00
bufferlist.py --HG-- 2008-03-14 21:17:04 +00:00
cache.py try this again 2007-03-06 15:05:38 +00:00
color.py --HG-- 2007-07-18 11:22:12 +00:00
completer.py --HG-- 2008-03-14 21:17:04 +00:00
default.py default value for open-file 2008-03-16 21:36:34 +00:00
dirutil.py point2->point and buffer2->buffer 2007-10-22 00:50:11 +00:00
highlight.py --HG-- 2008-03-14 21:17:04 +00:00
ispell.py turned ispell into a stand-alone script 2008-03-16 22:47:54 +00:00
keyinput.py --HG-- 2008-03-14 21:17:04 +00:00
lex.py lexing improvements 2008-03-16 05:23:14 +00:00
minibuffer.py v2.6 clean-up 2008-03-16 20:26:32 +00:00
miniparse.py search is better, other stuff is worse 2007-07-05 20:18:09 +00:00
point.py point2->point and buffer2->buffer 2007-10-22 00:50:11 +00:00
regex.py --HG-- 2007-10-30 20:25:14 +00:00
searchutil.py point2->point and buffer2->buffer 2007-10-22 00:50:11 +00:00
tab.py --HG-- 2008-03-14 21:17:04 +00:00
util.py fix for netbsd/alpha 2007-08-20 01:58:02 +00:00
window.py --HG-- 2007-10-22 00:55:43 +00:00

README

Pmacs

by Erik Osheim <erik@osheim.org>

Pmacs is an Emacs-like editor written entirely in Python. It is designed to
have maximally correct and powerful support for syntax highlighting, to support
various methods of automatically indenting lines, and to be extensible in
python.

Pmacs is available to you under the GNU GPL version 2.

While the general interface of Pmacs is related to Emacs, there was explicitly
no attempt to support all Emacs' functions, Emacs' underlying data structures,
or even all high-level functionality of Emacs. There is not currently a
formalized "public API" for pmacs, although some parts are "more public" than
others. The code is somewhat commented, although currently there is only one
author. Buyer beware!

Requirements:
    1. python 2.3 or higher
    2. ncurses
    3. bash

Optional Dependencies:
    * aespipe [for aes-encrypted buffers]
    * ctags   [for ctags support]
    * cvs     [for cvs-based commands]
    * grep    [for grep-based commands]
    * ispell  [for spell-as-you-type]
    * perl    [for perl syntax-checking]
    * svn     [for svn-based commands]

Quick Start Guide:
    1. Download and unpack the pmacs tarball file. After this, there should be
        a directory called "pmacs2" somewhere in your filesystem. It doesn't
        matter where you put this. We'll call the full path to this directory
        PMACSDIR; in future steps substitute the actual path for this symbol.

    2. Create a symlink to PMACSDIR/application.py and put it in a directory
        listed in your $PATH (~/bin, /usr/local/bin, and /usr/bin are all good
        candidates). You can name this symlink whatever you want; I use "pmc".

    3. Try editing a file, by typing "pmc FILE" where FILE is the path to the
        file you want to edit.

    4. Edit the file!

        You can type Control-c and then Meta-h to get a list of all the
        available actions and which key(s) perform them. Type Control-x k to get
        out of the "help buffer". If you have used emacs, many (but not all) of
        these key bindings should seem familiar.

    5. Some basic key bindings:

        C-v (or PG_DN)    move down a page
        M-v (or PG_UP)    move up a page
        C-a (or HOME)     move to the beginning of the line
        C-e (or END)      move to the end of the line
        M-<               move to the beginning of the buffer
        M->               move to the end of the buffer
        M-g               goto line number

        C-s               interactive forward search
        C-r               interactive backward search
        M-%               interactive search-and-replace

        C-]               cancel

        C-/ (or C-x u)    undo last change
        M-/ (or C-x r)    redo last undone change

        C-x C-f           open file in a new buffer
        C-x k             close the current buffer

        C-c M-h           open a buffer listing all available commands/bindings
        M-h               get a help with a command by name
        M-?               get information about a key sequence

        C-x C-s           save your changes
        C-x C-c           quit

        NOTE: the notation used corresponds to the following:
            C-x     hold Control and press x.
            M-x     hold Meta and press x.
            C-c j   hold Control and press c, then press j
            C-x C-s hold Control and press x, then hold Control and press s

    6. Other documentation:

        a. MODES: this file describes in more detail how modes function, and
           how to write your own.

        b. comments in the source code

Good luck!