https://github.com/bfontaine/conflicts.vim
Vim syntax for *.conflicts files
https://github.com/bfontaine/conflicts.vim
menhir vim
Last synced: about 1 year ago
JSON representation
Vim syntax for *.conflicts files
- Host: GitHub
- URL: https://github.com/bfontaine/conflicts.vim
- Owner: bfontaine
- Created: 2013-04-05T22:06:07.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-06T15:01:04.000Z (about 13 years ago)
- Last Synced: 2025-03-23T23:43:39.899Z (over 1 year ago)
- Topics: menhir, vim
- Language: VimL
- Size: 98.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# conflicts.vim
`conflicts.vim` is a Vim syntax file for `*.conflicts` files. These files are
generated by [Menhir][menhir], a LR(1) parser generator for the OCaml
programming language.
[menhir]: http://gallium.inria.fr/~fpottier/menhir/
## Install
[Download][vim-scripts] the latest version of the file, and drop it into your
`~/.vim/syntax/` directory:
```sh
mkdir -p ~/.vim/syntax
wget http://www.vim.org/scripts/download_script.php?src_id=19764 \
-O ~/.vim/syntax/conflicts.vim
```
Then add the following line to your `~/.vimrc` file:
```vim
au BufNewFile,BufRead *.conflicts set ft=conflicts
```
[vim-scripts]: http://www.vim.org/scripts/script.php?script_id=4507