An open API service indexing awesome lists of open source software.

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

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")
```