Is there any trusted OCaml IDE other than Camelia ?
I would prefer an eclipse based IDE if existed.
43 Answers
Editors
• Emacs
◦ ocaml-mode from the standard distribution
− cheat-sheet: /files/tuareg-mode.pdf
◦ camldebug intergration with debugger
◦ type feedback with C-c C-t key shortcut, needs .annot files
• Vim
• Eclipse
◦ currently mostly as typerex-mode for Emacs but integration with other editors will become better
◦ Auto-completion of identifiers (experimental)
◦ Browsing of identifiers: show type and comment, go to definition
◦ local and whole-program refactoring: renaming identifiers and compilation units, open elimination
• Some dedicated editors
◦ ocamlbrowser inspects libraries and programs
− browsing contents of modules
− search by name and by type
− basic editing, with syntax highlighting
NEW: editor OCaml-top, with syntax highlighting, indentation, type display, work well on all systems.
NEW: Merlin, similar to TypeRex but works better with work-in-progress files, has front-ends to Vim and Emacs currently.
2VSCode with ReasonML / OCaml plugin:
Install the VSCode plugin/extension with:
Jetbrains / IntellijIDEA ultimate:
With Jetbrains, install the plugin here:
You get intelli-sense / auto-complete with both editors using these plugins.
2Maybe you can check this topic: Looking for OCaml IDE
For eclipse based IDE you have OcaIDE
4
