在RStudio中禁用匹配的parens / quotes后这是正常的行为吗?

时间:2018-05-07 16:11:06

标签: rstudio

我刚刚禁用了RStudio中的Insert matching parens/quotes选项。但是,我现在面临一个新问题,因为自动缩进行为也发生了变化:

Insert matching parens/quotes 开启

第1步:for (i in 1:10) {}

第2步:在大括号内点击输入:{ENTER}

结果

for (i in 1:10) {
}  # all good here

Insert matching parens/quotes 关闭

第1步:for (i in 1:10) {}

第2步:在大括号内点击输入:{ENTER}

结果

for (i in 1:10) {
  }  # not the same column as the f in for 

问题:我不确定这是不是一个错误。如何在不引起第二个问题的情况下阻止RStudio使用matching parens/quotes

我在Windows上使用RStudio版本1.1.447。

0 个答案:

没有答案