关于 rstudio:防止 r-markdown 展开代码/功能

prevent r-markdown from unfolding code/function

这是我的 r-markdown 代码:

1
2
3
4
5
6
7
8
9
10
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r}

test_funciton <- function(){<->}

3+5

```

观察 test_function 是否折叠。现在,当我执行 3+5 行时,我最终得到以下视图:

1
2
3
4
5
6
7
8
9
10
11
12
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r}

test_funciton <- function(){
  print('test')
}

3+5

```

test_function 现在已展开。我想知道我是否可以阻止这种展开的行为?


你试过这个答案吗?
我试图在我的 RStudio v1.2.5033 中重现您的问题,它对我有用。

Tools > Global Options > R Markdown > Uncheck: Show output inline for all R Markdown Documents.

That should disable inline code chunk output when you're editing R Markdown documents.
Does that get you what you're asking?