Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ocamlinterface (mli), ocamllex (mll) and menhir (mly) filetypes #61

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ NeoBundleInstall ocaml/vim-ocaml'

" or use NeoBundleLazy
NeoBundleLazy 'rgrinberg/vim-ocaml', {'autoload' : {'filetypes' :
\ ['ocaml', 'dune', 'opam', 'oasis', 'omake', 'ocamlbuild_tags', 'sexplib']}}
\ ['ocaml', 'ocamlinterface', 'ocamllex', 'dune', 'opam', 'oasis', 'omake', 'ocamlbuild_tags', 'sexplib']}}
```

## History
Expand Down
2 changes: 1 addition & 1 deletion ftdetect/ocaml.vim
Original file line number Diff line number Diff line change
@@ -1 +1 @@
au BufNewFile,BufRead *.ml,*.mli,*.mll,*.mly,.ocamlinit,*.mlt,*.mlp,*.mlip,*.mli.cppo,*.ml.cppo setf ocaml
au BufNewFile,BufRead *.ml,*.mly,.ocamlinit,*.mlt,*.mlp,*.ml.cppo setf ocaml
1 change: 1 addition & 0 deletions ftdetect/ocamlinterface.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
au BufNewFile,BufRead *.mli,*.mlip,*.mli.cppo setf ocamlinterface
1 change: 1 addition & 0 deletions ftdetect/ocamllex.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
au BufNewFile,BufRead *.mll setf ocamllex
12 changes: 12 additions & 0 deletions ftplugin/ocamlinterface.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
" Language: OCaml Interface
" Maintainer: vim-ocaml maintainers
" URL: http://www.github.com/ocaml/vim-ocaml

if exists("b:did_ftplugin")
finish
endif

runtime! ftplugin/ocaml.vim
runtime! ftplugin/ocaml_*.vim ftplugin/ocaml/*.vim

" vim:sw=2 fdm=indent
12 changes: 12 additions & 0 deletions ftplugin/ocamllex.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
" Language: OCamlLex
" Maintainer: vim-ocaml maintainers
" URL: http://www.github.com/ocaml/vim-ocaml

if exists("b:did_ftplugin")
finish
endif

runtime! ftplugin/ocaml.vim
runtime! ftplugin/ocaml_*.vim ftplugin/ocaml/*.vim

" vim:sw=2 fdm=indent