freebsd-dev/utils/emacs
2010-01-01 10:31:22 +00:00
..
emacs.el Update llvm to r84119. 2009-10-14 17:57:32 +00:00
llvm-mode.el Update LLVM to 92395. 2010-01-01 10:31:22 +00:00
README Import LLVM, at r72732. 2009-06-02 17:52:33 +00:00
tablegen-mode.el Update LLVM to r84949. 2009-10-23 14:19:52 +00:00

-*- llvm/utils/emacs/README -*-

These are syntax highlighting files for the Emacs and XEmacs editors. Included
are:

* llvm-mode.el

  Syntax highlighting mode for LLVM assembly files. To use, add this code to
  your ~/.emacs :

  (setq load-path
    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
  (require 'llvm-mode)
  
* tablegen-mode.el

  Syntax highlighting mode for TableGen description files. To use, add this code
  to your ~/.emacs:

  (setq load-path
    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
  (require 'tablegen-mode)


Note: If you notice missing or incorrect syntax highlighting, please contact
<llvmbugs [at] cs.uiuc.edu>; if you wish to provide a patch to improve the
functionality, it will be most appreciated. Thank you.