Tune cindent "switch" indentation
- by Don Reba
Nemerle is a C-like language and mostly works very well with cindent. However, its construct analogous to switch is called match:
match (x)
{
| "Hello World" => ...
| _ => ...
}
Is it possible to get the cinoptions for switch statements to apply to this construct, instead? Maybe there is a regular expression I can set somewhere. If not, can I get the vertical bars to align with the braces another way?