package chamo
Install
Dune Dependency
Authors
Maintainers
Sources
md5=97dddda8d30ff74318f3079716a83103
sha512=988a0d3f0b1440ac99286b087a6d8629dd79a2bf1941fc99a68567063ff1d74130402927670458ba934f3c5423d83cca5af42a81b0205c97a984659893f6c091
doc/chamo.byte/Chamo_byte/Eval/index.html
Module Chamo_byte.Eval
Source
OCaml code evaluation. This module is present only in the bytecode version of chamo and defines commands to evaluate OCaml code in the editor itself, to modify is behaviour, add commands, etc...
This module also adds a command line option --run
taking a filename whose contents must be evaluated at launch time.
The user's init file evaluated at launch time. This file should contain OCaml source code.
This is the code of the default "prompt_eval" command. It uses the active window's minibuffer to ask the user for some code to evaluate.
This is the code of the default "eval_file" command. It tries to evaluate the file whose name is in first parameter. If there is no argument, then the active window's minibuffer is used to make the user select a file.
This is the code of the default "load_file" command. It tries to load the ocaml bytecode file whose name is in first parameter. If there is no argument, then the active window's minibuffer is used to make the user select a file.
Code of the default "eval" command. It evaluates the OCaml source code given as first argument. If no argument is given, then the "prompt_eval" command is called.