pmacs3/MODES

113 lines
5.1 KiB
Plaintext
Raw Normal View History

2007-07-24 09:35:27 -04:00
This document is designed to be a quick (and incomplete) description of how
modes work, how you might create one yourself, etc.
1. What are modes?
2008-03-17 03:46:20 -04:00
Pmacs uses modes to determine what which keys should apply which actions, how
the buffer should be highlighted, how the buffer should be indented, and any
other per-buffer configuration. The default mode ("Fundamental") provides the
base functionality which all other modes inherit.
2007-07-24 09:35:27 -04:00
2007-07-25 16:52:48 -04:00
2. Where do they come from?
2007-10-18 17:12:11 -04:00
Modes are loaded and installed by application.py, or by $HOME/.pmc/conf, which
is sourced by application.py. To install a mode, import its class from the
package in which it resides, and call install() on the class, passing the
application as the only argument. Example:
2007-07-25 16:52:48 -04:00
2007-10-18 17:12:11 -04:00
import mymode
mymode.ModeClass.install(self)
2007-07-25 16:52:48 -04:00
2007-10-18 17:12:11 -04:00
This code can be run in application.py's constructor, or in $HOME/.pmc/conf.
2007-07-25 16:52:48 -04:00
3. How do they work?
2007-07-28 23:45:34 -04:00
The one thing every mode has in common is that they map key bindings to actions
to be taken. They do this via self.bindings, a dictionary mapping action names
(i.e. 'page-down') to a tuple of key bindings (i.e. ('C-v', 'PG_DN',)).
2008-03-17 03:46:20 -04:00
Modes subclass mode.Fundamental, and they call mode.Fundamental.__init__ to run
the standard mode initialization (including building the default bindings
2007-07-28 23:45:34 -04:00
dictionary); they can later modify or overwrite this dictionary if they choose.
2007-07-29 00:20:47 -04:00
There are at least 3 optional behaviors modes can make use of:
1. Syntax highlighting
2. Indentation level detection
3. Tag (parenthesis, brace, bracket, etc.) matching
Not all modes can (or should) make use of these features: they are primarily
useful in modes having to do with programming languages, or other structured
documents.
4. Syntax highlighting
Syntax highlighting uses a hybrid lexing/parsing process to break each line of
the buffer down into one or more lexical tokens; these tokens are primarily
used to highlight parts of the buffer different colors. The colors to use are
2008-03-17 03:46:20 -04:00
defined by application.colors, a dictionary mapping token-names to a tuple
consisting of at least a foreground color and a background color. Modes can
define a self.colors dictionary which will be added to the application; however,
modes are not permitted to override the global defaults in this way (the user
can override them via ~/.pmc/conf in whatever way is desired).
Modes are encouraged to use "generic" token names when appropriate; modes can
also "namespace" their tokens to allow for mode-specific customization.
2007-07-29 00:20:47 -04:00
Explaining how to write a Grammar is outside the scope of this document; see
2008-03-17 03:46:20 -04:00
lex.py, mode.py and mode/*.py for examples. Some important points to note:
2007-07-29 00:20:47 -04:00
* Regexes are applied to only one line of the document at a time.
2007-10-20 18:01:47 -04:00
* All regexes must match at least one character (the newline counts).
2007-07-29 00:20:47 -04:00
* All tokens must consist of at least one character.
* A rule that matches must generate one or more tokens.
* Any input not matched by a rule will end up in a "null" token.
* Tokens can't "look" for other tokens (but they can use 0-width assertions
to test for data on the current line).
2007-10-20 18:01:47 -04:00
* Regions of text which begin and end with recognizable tokens can be
lexed using a different sub-grammar using RegionRule, etc. This nesting
can be arbitrarily deep.
2008-03-17 03:46:20 -04:00
* sub-grammars can be dynamically specified in modes that provide one or
more OverridePatternRule objects.
2007-07-29 00:20:47 -04:00
5. Indentation level detection
Indentation level detection hooks into the basic 'insert-tab' action; rather
than inserting 4 spaces (which is the default), it will instead determine the
correct "tab depth" for this line of the buffer, and insert/remove spaces from
the beginning of the line in order to reach the correct number.
To implement this, you must create a Tabber class and assign it to self.tabber
in the mode. At a minimum, a tabber must support the following methods:
* __init__(self, mode)
* get_level(self, y)
* region_added(self, p, lines)
* region_removed(self, p1, p2)
2008-03-17 03:46:20 -04:00
Tabber classes can often be tricky to implement correctly. tab.Tabber provides
2007-07-29 00:20:47 -04:00
a lot of base functionality that is probably useful; also, you may want to try
2008-03-17 03:46:20 -04:00
looking at tab.StackTabber, which provides even more base support.
2007-07-29 00:20:47 -04:00
6. Tag matching
Tag matching allows a closing tag (such as ")") to "show" the corresponding
opening tag (such as an earlier "(") to help orient the user. Currently, tags
are assumed to be single characters, although in the future it's easy to imagine
multi-character tags being useful. Currently they are not supported.
This support is very easy to add, assuming that the mode has a grammar. In most
cases, here is how it works:
a. In the mode, create 4 tuples:
* opentokens: tuple of lexical tokens which can be opentags
* opentags: dictionary mapping opentag strings to closetag strings
* closetokens: tuple of lexical tokens which can be closetags
* closetags: dictionary mapping closetag strings to opentag strings
2008-03-17 03:46:20 -04:00
b. Also in the mode, create or instantiate actions who subclass
2007-07-29 00:20:47 -04:00
method.CloseTag (e.g. method.CloseParen) and assign them the appropriate
binding (e.g. '(').
c. Enjoy!