Detect .mll and .mly files as OCaml sources

This commit is contained in:
Masanori Ogino 2023-07-26 06:52:09 +09:00
parent 12310418b0
commit 8fb0a99f05

View File

@ -4,7 +4,7 @@
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*\.mli? %{
hook global BufCreate .*\.(ml|mli|mll|mly)$ %{
set-option buffer filetype ocaml
}