Is there any trusted OCaml IDE other than Camelia ?

I would prefer an eclipse based IDE if existed.

4

3 Answers

Editors

• Emacs

◦ ocaml-mode from the standard distribution

◦ alternative tuareg-mode

− cheat-sheet: /files/tuareg-mode.pdf

◦ camldebug intergration with debugger

◦ type feedback with C-c C-t key shortcut, needs .annot files

• Vim

◦ OMLet plugin

◦ For type lookup: either

− or

− also?

• Eclipse

◦ OCaml Development Tools

◦ an old plugin OcaIDE

• TypeRex

◦ 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

◦ OCamlEditor

◦ ocamlbrowser inspects libraries and programs

− browsing contents of modules

− search by name and by type

− basic editing, with syntax highlighting

◦ Cameleon (older)

◦ Camelia (even older)

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.

2

VSCode with ReasonML / OCaml plugin:

enter image description here

Install the VSCode plugin/extension with:

enter image description here

Jetbrains / IntellijIDEA ultimate:

enter image description here

With Jetbrains, install the plugin here:

enter image description here

You get intelli-sense / auto-complete with both editors using these plugins.

2

Maybe you can check this topic: Looking for OCaml IDE

For eclipse based IDE you have OcaIDE

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy