缩进让我们打开Mod

时间:2012-05-08 21:23:16

标签: ocaml typerex

有没有办法从TypeRex获得这种布局?

let alert ctx x = 
  let open Alert in
  Printf.printf "...Alert: type = %s, status = %s\n"
    (Type.to_string (type_ x)) (status x);
  flush stdout

我最终得到了这个对我而言看起来不是最理想的

let alert ctx x = 
  let open Alert in
      Printf.printf "...Alert: type = %s, status = %s\n"
        (Type.to_string (type_ x)) (status x);
      flush stdout

1 个答案:

答案 0 :(得分:3)

Typerex尚未实现缩进。我们仍在使用tuareg-mode的缩进,但计划重新实现。