vera-mode
vera-mode is an interactive autoloaded compiled Lisp function in `vera-mode.el
'.
(vera-mode)
Parent mode: `prog-mode'.
Major mode for editing Vera code.
Usage:
------
INDENTATION: Typing `TAB' at the beginning of a line indents the line.
The amount of indentation is specified by option `vera-basic-offset'.
Indentation can be done for an entire region (`M-C-\') or buffer (menu).
`TAB' always indents the line if option `vera-intelligent-tab' is nil.
WORD/COMMAND COMPLETION: Typing `TAB' after a (not completed) word looks
for a word in the buffer or a Vera keyword that starts alike, inserts it
and adjusts case. Re-typing `TAB' toggles through alternative word
completions.
Typing `TAB' after a non-word character inserts a tabulator stop (if not
at the beginning of a line). `M-TAB' always inserts a tabulator stop.
COMMENTS: `C-c C-c' comments out a region if not commented out, and
uncomments a region if already commented out.
HIGHLIGHTING (fontification): Vera keywords, predefined types and
constants, function names, declaration names, directives, as well as
comments and strings are highlighted using different colors.
VERA VERSION: OpenVera 1.4 and Vera version 6.2.8.
Maintenance:
------------
To submit a bug report, use the corresponding menu entry within Vera Mode.
Add a description of the problem and include a reproducible test case.
Feel free to send questions and enhancement requests to <reto@gnu.org>.
Official distribution is at
URL `http://www.iis.ee.ethz.ch/~zimmi/emacs/vera-mode.html'
The Vera Mode Maintainer
Reto Zimmermann <reto@gnu.org>
Key bindings:
-------------
key binding
--- -------
C-c Prefix Command
TAB vera-electric-tab
RET vera-electric-return
ESC Prefix Command
SPC vera-electric-space
# vera-electric-pound
* vera-electric-star
/ vera-electric-slash
{ vera-electric-opening-brace
} vera-electric-closing-brace
<M-delete> kill-word
<backspace> backward-delete-char-untabify
<delete> delete-char
C-c C-c vera-comment-uncomment-region
C-c TAB indent-according-to-mode
C-c C-v vera-version
C-M-a vera-backward-same-indent
C-M-e vera-forward-same-indent
C-M-i tab-to-tab-stop
C-M-\ vera-indent-region
M-a vera-backward-statement
M-e vera-forward-statement
In addition to any hooks its parent mode `prog-mode' might have run,
this mode runs the hook `vera-mode-hook', as the final step
during initialization.