Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitalyankh/llvm-tools
https://github.com/vitalyankh/llvm-tools
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vitalyankh/llvm-tools
- Owner: VitalyAnkh
- Created: 2022-05-06T13:36:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T02:49:19.000Z (7 months ago)
- Last Synced: 2024-05-17T06:51:12.172Z (6 months ago)
- Language: Emacs Lisp
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+title: llvm/utils/emacs
* DISCLAIMER
These are all the files from the official LLVM project. I create this to avoid cloning the whole monorepo in order to use its emacs major modes.* llvm-mode - Major mode for editing LLVM IR files
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= :
#+begin_src emacs-lisp
(setq load-path
(cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
(require 'llvm-mode)
#+end_src- tablegen-mode.el
Syntax highlighting mode for TableGen description files. To use, add this code
to your ~/.emacs:
#+begin_src emacs-lisp
(setq load-path
(cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
(require 'tablegen-mode)
#+end_src
Note: If you notice missing or incorrect syntax highlighting, please contact
; if you wish to provide a patch to improve the
functionality, it will be most appreciated. Thank you.