shugo / textbringer

An Emacs-like text editor written in Ruby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comma indentation of ruby mode is wrong

shugo opened this issue · comments

{
  x: 1,
    y: 2,
    z: 3
}

shoud be:

{
  x: 1,
  y: 2,
  z: 3
}