Excerpts from netnews.comp.emacs: 5-Aug-98 VHDL-mode for emacs by Dirk
Fisc
...@gmx.de
> how can I import a new major-mode into emacs, and where can I find a
> particular one ? I'm looking for a mode for VHDL-code. Furthermore it
I forgot exactly how I found the mode, but a web search usually works
well. Something like "VHDL mode emacs" or "vhdl-mode.el" should do the
trick. Anyway, the URL is
http://www.iis.ee.ethz.ch/~zimmi/vhdl-mode.html Installation instructions are in the comments at the top of the file.
> would be nice that emacs marks two corresponding brackets with a colour
> if the cursor is on one of these. I know this feature from another
> emacs-installation.
If you are using Emacs-19, put this in your .emacs:
(require 'paren)
(setq show-paren-delay '0.0625)
(setq show-paren-face 'highlight)
The last two lines are optional, feel free to change them to suit your
preferences. I believe the behavior has changed in Emacs-20. Start
with "M-x load-library RET paren RET" and then "M-x apropos RET paren RET"
and see what you get.
Hope this helps,
Pete Boettcher
boettc...@cmu.edu