experimental patches to utop
Go to file
Jeremie Dimino 2351c45995 start of the GTK ui
Ignore-this: b51ff928e96baaa006c6ffc612196645

darcs-hash:20110920154735-c41ad-1bc3b29f91f26b1436235470bf4de5ef64de6146
2011-09-20 17:47:35 +02:00
man add konsole the utoprc(5) 2011-08-04 09:19:56 +02:00
src start of the GTK ui 2011-09-20 17:47:35 +02:00
syntax ocaml 3.13 ready 2011-08-03 19:55:30 +02:00
utils fix the install-compiler-libs.sh script on Windows 2011-09-20 01:50:11 +02:00
CHANGES version 1.1 2011-08-06 13:40:14 +02:00
LICENSE fix LICENSE date 2011-08-25 10:22:13 +02:00
README add a script to install compiler libraries 2011-08-03 13:32:51 +02:00
_oasis start of the GTK ui 2011-09-20 17:47:35 +02:00
_tags start of the GTK ui 2011-09-20 17:47:35 +02:00
boring initial import 2011-07-23 08:59:13 +02:00
dist.sh initial import 2011-07-23 08:59:13 +02:00
myocamlbuild.ml allow to create the toplevel with debugging informations 2011-09-16 13:03:46 +02:00
predist.sh add a script to install compiler libraries 2011-08-03 13:32:51 +02:00
setup.ml search for compiler libraries at configure time 2011-08-03 19:00:52 +02:00
style.css build ocamldoc documentation 2011-08-04 14:54:57 +02:00
utoprc-dark start of the GTK ui 2011-09-20 17:47:35 +02:00
utoprc-light start of the GTK ui 2011-09-20 17:47:35 +02:00

README

A universal toplevel for OCaml.

url: https://forge.ocamlcore.org/projects/utop/

* Requirements:

  utop depends on the following packages:

  * findlib      (http://projects.camlcity.org/projects/findlib.html)
  * react        (http://erratique.ch/software/react)
  * lwt          (http://ocsigen.org/lwt/)
  * camomile     (http://camomile.sourceforge.net/)
  * zed          (http://forge.ocamlcore.org/projects/zed/)
  * lambda-term  (http://forge.ocamlcore.org/projects/lambda-term/)

  Lwt must be compiled with react support, configure it with:

    $ ./configure --enable-react

  utop also requires OCaml compiler libraries. If you are using
  debian, they are available as the package ocaml-compiler-libs, if
  you are using godi, they are installed by default. If you installed
  ocaml by hand, you can run the script utils/install-compiler-libs.sh.

* Installation:

  To compile and install lambda-term just type:

    $ ocaml setup.ml -configure
    $ ocaml setup.ml -build
    $ ocaml setup.ml -install

  If you get the development version of utop you must obtain oasis
  (http://oasis.forge.ocamlcore.org/).

* Usage:

  To use utop, simply run:

    $ utop

  utop display a bar after the prompt which is used to show possible
  completions in real-time. You can navigate in it using Alt+Left and
  Alt+Right, and select one completion using Alt+Tab.

* Customization:

  To add colors to utop, copy one of the files utoprc-dark or
  utoprc-light to ~/.utoprc. utoprc-dark is for terminals with dark
  colors (such as white on black) and utoprc-light is for terminals
  with light colors (such as black on white).

  You can also customize the prompt of utop by setting the reference
  UTop.prompt.

* Integration with emacs:

  To use utop in emacs, add the following line to your ~/.emacs file:

    (autoload 'utop "utop" "Toplevel for OCaml" t)

  Then you can run utop by executing the command "utop" in emacs.

* Integration with the tuareg mode:

  You can replace the default toplevel used by the tuareg mode by
  utop, for that add the following lines to your ~/.emacs file:

    (autoload 'utop-eval-region "utop" "Toplevel for OCaml" t)
    (autoload 'utop-eval-phrase "utop" "Toplevel for OCaml" t)
    (autoload 'utop-eval-buffer "utop" "Toplevel for OCaml" t)

    (defun tuareg-utop-hook ()
      (local-set-key "\M-\C-x" 'utop-eval-phrase)
      (local-set-key "\C-x\C-e" 'utop-eval-phrase)
      (local-set-key "\C-c\C-e" 'utop-eval-phrase)
      (local-set-key "\C-c\C-r" 'utop-eval-region)
      (local-set-key "\C-c\C-b" 'utop-eval-buffer))

    (add-hook 'tuareg-mode-hook 'tuareg-utop-hook)

* Development:

  The last development version of utop can always be found in the
  darcs repository hosted at darcs.ocamlcore.org:

  $ darcs get http://darcs.ocamlcore.org/repos/utop