better-align icon indicating copy to clipboard operation
better-align copied to clipboard

Unexpected indent in R language

Open pwwang opened this issue 6 years ago • 1 comments

Original code

alist = list(a=1,b=2)
alist[["a"]] = 3
alist$b = 4

After align:

      alist   = list(a=1,b=2)
alist[["a"]]  = 3
      alist$b = 4

Expected:

alist         = list(a=1,b=2)
alist[["a"]]  = 3
alist$b       = 4

All options are left as default.

pwwang avatar May 22 '18 21:05 pwwang

php have the same problem, i set indentBase dontchange, not run

zeroone2005 avatar Apr 23 '19 04:04 zeroone2005