├── .gitignore ├── LICENSE_MIT.txt ├── README.md ├── autoload ├── ocpindent.py └── ocpindent.vim └── indent ├── ocaml.vim └── omlet.vim /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE_MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/LICENSE_MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/README.md -------------------------------------------------------------------------------- /autoload/ocpindent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/autoload/ocpindent.py -------------------------------------------------------------------------------- /autoload/ocpindent.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/autoload/ocpindent.vim -------------------------------------------------------------------------------- /indent/ocaml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/indent/ocaml.vim -------------------------------------------------------------------------------- /indent/omlet.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/let-def/ocp-indent-vim/HEAD/indent/omlet.vim --------------------------------------------------------------------------------