在 RStudio 上禁用可视化降价编辑器
Disable visual markdown editor on RStudio
我正在与 Quarto 一起使用 RStudio 2022.02.2+485 进行书籍项目。每当我打开一个 mardown .qmd
文件时,RStudio 会自动使用 Visual
markdown 编辑器打开该文件,加载需要时间。即使我移至 Source
窗格,RStudio 也会在之后再次移回 Visual
编辑器并且我对文件进行编辑或每当我打开一个新文件时。
有没有办法在 RStudio 上禁用可视化 markdown 编辑器?
Rstudio 版本
RStudio 2022.02.2+485 "Prairie Trillium" Release
(8acbd38b0d4ca3c86c570cf4112a8180c48cc6fb, 2022-04-19) for Windows
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML,
like Gecko) QtWebEngine/5.12.8 Chrome/69.0.3497.128 Safari/537.36
您可以将 RStudio IDE 配置为默认使用或不使用可视化编辑器。查看全局选项
https://quarto.org/docs/visual-editor/options.html#global-options
在每个文件的基础上,您也可以在 YAML 中进行设置
editor:
mode: source
而不是
editor:
mode: visual
以便文件始终以源代码模式打开。
我正在与 Quarto 一起使用 RStudio 2022.02.2+485 进行书籍项目。每当我打开一个 mardown .qmd
文件时,RStudio 会自动使用 Visual
markdown 编辑器打开该文件,加载需要时间。即使我移至 Source
窗格,RStudio 也会在之后再次移回 Visual
编辑器并且我对文件进行编辑或每当我打开一个新文件时。
有没有办法在 RStudio 上禁用可视化 markdown 编辑器?
Rstudio 版本
RStudio 2022.02.2+485 "Prairie Trillium" Release (8acbd38b0d4ca3c86c570cf4112a8180c48cc6fb, 2022-04-19) for Windows Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.8 Chrome/69.0.3497.128 Safari/537.36
您可以将 RStudio IDE 配置为默认使用或不使用可视化编辑器。查看全局选项 https://quarto.org/docs/visual-editor/options.html#global-options
在每个文件的基础上,您也可以在 YAML 中进行设置
editor:
mode: source
而不是
editor:
mode: visual
以便文件始终以源代码模式打开。