R Studio - 代码折叠包括最后一个空白行?

时间:2017-09-20 14:35:12

标签: r rstudio code-folding

我正在使用R Studio桌面并尝试使用代码折叠。我的代码如下所示:

# first ----
test1 <- 1

# second ----
test2 <- 2

# third ----
test3 <- 3

# fourth ----
test4 <- 4

当它折叠时,我希望它看起来像这样:

# first <>

# second <>

# third <>

# fourth <>

但相反,它看起来像这样:

# first <>
# second <>
# third <>
# fourth <>

有没有办法让R Studio不包括折叠中的最后一个空行?我在使用R Studio Server时不记得这是一个问题,但我现在无法确认。

0 个答案:

没有答案