3

有没有办法从 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
4

1 回答 1

3

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

于 2012-05-09T07:50:57.363 回答