You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: news/changelog-1.9.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,3 +178,4 @@ All changes included in 1.9:
178
178
- ([#13997](https://github.com/quarto-dev/quarto-cli/issues/13997)): Fix Windows dart-sass theme compilation failing when Quarto is installed in a path with spaces (e.g., `C:\Program Files\`) and the project path also contains spaces.
179
179
- ([#13998](https://github.com/quarto-dev/quarto-cli/issues/13998)): Fix YAML validation error with CR-only line terminators (old Mac format). Documents using `\r` line endings no longer fail with "Expected YAML front matter to contain at least 2 lines".
180
180
- ([#14012](https://github.com/quarto-dev/quarto-cli/issues/14012)): Add `fr-CA` language translation for Quebec French inclusive writing conventions, using parenthetical forms instead of middle dots for author labels. (author: @tdhock)
181
+
- ([#14032](https://github.com/quarto-dev/quarto-cli/issues/14032)): Add `editor_options` with `chunk_output_type` to YAML schema for autocompletion and validation in RStudio and Positron.
Copy file name to clipboardExpand all lines: src/resources/editor/tools/vs-code.mjs
+33-8Lines changed: 33 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14477,6 +14477,26 @@ var require_yaml_intelligence_resources = __commonJS({
14477
14477
},
14478
14478
description: "Visual editor configuration"
14479
14479
},
14480
+
{
14481
+
name: "editor_options",
14482
+
schema: {
14483
+
object: {
14484
+
properties: {
14485
+
chunk_output_type: {
14486
+
enum: [
14487
+
"inline",
14488
+
"console"
14489
+
],
14490
+
description: "Determines where chunk output is shown in the editor."
14491
+
}
14492
+
}
14493
+
}
14494
+
},
14495
+
description: {
14496
+
short: "Editor-specific options (used by RStudio and Positron).",
14497
+
long: "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure\nper-document editor settings.\n"
14498
+
}
14499
+
},
14480
14500
{
14481
14501
name: "zotero",
14482
14502
schema: {
@@ -25075,7 +25095,12 @@ var require_yaml_intelligence_resources = __commonJS({
25075
25095
"Disambiguating year suffix in author-date styles (e.g. \u201Ca\u201D in \u201CDoe,\n1999a\u201D).",
25076
25096
"Manuscript configuration",
25077
25097
"internal-schema-hack",
25078
-
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019."
25098
+
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto\u2019s default order\nis \u2018knitr\u2019, \u2018jupyter\u2019, \u2018markdown\u2019, \u2018julia\u2019.",
25099
+
{
25100
+
short: "Editor-specific options (used by RStudio and Positron).",
25101
+
long: "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure per-document\neditor settings."
25102
+
},
25103
+
"Determines where chunk output is shown in the editor."
25079
25104
],
25080
25105
"schema/external-schemas.yml": [
25081
25106
{
@@ -25305,12 +25330,12 @@ var require_yaml_intelligence_resources = __commonJS({
25305
25330
mermaid: "%%"
25306
25331
},
25307
25332
"handlers/mermaid/schema.yml": {
25308
-
_internalId: 221789,
25333
+
_internalId: 221795,
25309
25334
type: "object",
25310
25335
description: "be an object",
25311
25336
properties: {
25312
25337
"mermaid-format": {
25313
-
_internalId: 221781,
25338
+
_internalId: 221787,
25314
25339
type: "enum",
25315
25340
enum: [
25316
25341
"png",
@@ -25326,7 +25351,7 @@ var require_yaml_intelligence_resources = __commonJS({
25326
25351
exhaustiveCompletions: true
25327
25352
},
25328
25353
theme: {
25329
-
_internalId: 221788,
25354
+
_internalId: 221794,
25330
25355
type: "anyOf",
25331
25356
anyOf: [
25332
25357
{
@@ -25623,7 +25648,7 @@ function locationString(loc) {
Copy file name to clipboardExpand all lines: src/resources/editor/tools/yaml/yaml-intelligence-resources.json
+29-4Lines changed: 29 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7449,6 +7449,26 @@
7449
7449
},
7450
7450
"description": "Visual editor configuration"
7451
7451
},
7452
+
{
7453
+
"name": "editor_options",
7454
+
"schema": {
7455
+
"object": {
7456
+
"properties": {
7457
+
"chunk_output_type": {
7458
+
"enum": [
7459
+
"inline",
7460
+
"console"
7461
+
],
7462
+
"description": "Determines where chunk output is shown in the editor."
7463
+
}
7464
+
}
7465
+
}
7466
+
},
7467
+
"description": {
7468
+
"short": "Editor-specific options (used by RStudio and Positron).",
7469
+
"long": "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure\nper-document editor settings.\n"
7470
+
}
7471
+
},
7452
7472
{
7453
7473
"name": "zotero",
7454
7474
"schema": {
@@ -18047,7 +18067,12 @@
18047
18067
"Disambiguating year suffix in author-date styles (e.g. “a” in “Doe,\n1999a”).",
18048
18068
"Manuscript configuration",
18049
18069
"internal-schema-hack",
18050
-
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’."
18070
+
"List execution engines you want to give priority when determining\nwhich engine should render a notebook. If two engines have support for a\nnotebook, the one listed earlier will be chosen. Quarto’s default order\nis ‘knitr’, ‘jupyter’, ‘markdown’, ‘julia’.",
18071
+
{
18072
+
"short": "Editor-specific options (used by RStudio and Positron).",
18073
+
"long": "Editor-specific options that control IDE behavior for this document.\nThese options are used by RStudio and Positron to configure per-document\neditor settings."
18074
+
},
18075
+
"Determines where chunk output is shown in the editor."
0 commit comments