Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | H A D | 07-Feb-2023 | 1,022 | 37 | 24 | |
emacs.el | H A D | 02-Aug-2018 | 958 | 33 | 24 | |
llvm-mir-mode.el | H A D | 17-Jul-2024 | 2.2 KiB | 71 | 44 | |
llvm-mode.el | H A D | 02-Jan-2025 | 6.9 KiB | 147 | 89 | |
tablegen-mode.el | H A D | 10-Jan-2024 | 4.9 KiB | 131 | 82 |
README
1-*- llvm/utils/emacs/README -*- 2 3These are syntax highlighting files for the Emacs and XEmacs editors. Included 4are: 5 6* llvm-mode.el 7 8 Syntax highlighting mode for LLVM assembly files. To use, add this code to 9 your ~/.emacs : 10 11 (setq load-path 12 (cons (expand-file-name "path-to-llvm/utils/emacs") load-path)) 13 (require 'llvm-mode) 14 15* llvm-mir-mode.el 16 17 Syntax highlighting mode for LLVM Machine IR files. To use, add this code to 18 your ~/.emacs : 19 20 (setq load-path 21 (cons (expand-file-name "path-to-llvm/utils/emacs") load-path)) 22 (require 'llvm-mir-mode) 23 24* tablegen-mode.el 25 26 Syntax highlighting mode for TableGen description files. To use, add this code 27 to your ~/.emacs: 28 29 (setq load-path 30 (cons (expand-file-name "path-to-llvm/utils/emacs") load-path)) 31 (require 'tablegen-mode) 32 33 34Note: If you notice missing or incorrect syntax highlighting, please contact 35<llvm-bugs [at] lists.llvm.org>; if you wish to provide a patch to improve the 36functionality, it will be most appreciated. Thank you. 37