https://github.com/manateelazycat/flex
It's a mode for flex files that provide better syntax highlight than flex-mode.el
https://github.com/manateelazycat/flex
Last synced: 3 months ago
JSON representation
It's a mode for flex files that provide better syntax highlight than flex-mode.el
- Host: GitHub
- URL: https://github.com/manateelazycat/flex
- Owner: manateelazycat
- Created: 2018-10-04T01:56:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T13:21:10.000Z (almost 6 years ago)
- Last Synced: 2024-12-30T19:35:14.494Z (10 months ago)
- Language: Emacs Lisp
- Size: 265 KB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### What's this?
It's a mode for flex files that provide better syntax highlight than flex-mode.el## Installation
Then put flex.el to your load-path.The load-path is usually ~/elisp/.
It's set in your ~/.emacs like this:
```Elisp
(add-to-list 'load-path (expand-file-name "~/elisp"))(require 'flex)
(add-to-list 'auto-mode-alist '("\\.l$" . flex-mode))
(autoload 'flex-mode "flex")
```