Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Fixes

- Fix hover on method calls not showing the type. (#1553, fixes #1552)
- Fix error on opening `.mll` files (#1557)

# 1.23.0

Expand Down
2 changes: 1 addition & 1 deletion ocaml-lsp-server/src/document.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Kind = struct

let of_fname_opt p =
match Filename.extension p with
| ".ml" | ".eliom" | ".re" -> Some Impl
| ".ml" | ".eliom" | ".re" | ".mll" | ".mly" -> Some Impl
| ".mli" | ".eliomi" | ".rei" -> Some Intf
| _ -> None
;;
Expand Down
Loading