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: apps/vscode/CHANGELOG.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,17 @@
1
1
# Changelog
2
2
3
-
## 1.119.0 (unreleased)
3
+
## 1.120.0 (unreleased)
4
+
5
+
- Protect code cell options from formatting (<https://github.com/quarto-dev/quarto/pull/655>).
6
+
7
+
## 1.119.0 (Release on 2025-03-21)
4
8
5
9
- Use `QUARTO_VISUAL_EDITOR_CONFIRMED` > `PW_TEST` > `CI` to bypass (`true`) or force (`false`) the Visual Editor confirmation dialogue (<https://github.com/quarto-dev/quarto/pull/654>).
6
10
- Fix behavior in Positron when running a cell containing invalid/incomplete code (<https://github.com/quarto-dev/quarto/pull/664>).
7
-
-Protect code cell options from formatting (<https://github.com/quarto-dev/quarto/pull/655>).
11
+
-Ensure `#|` is added only at the beginning of a new line (<https://github.com/quarto-dev/quarto/pull/649>).
8
12
- Fix `language` typos throughout the codebase (<https://github.com/quarto-dev/quarto/pull/650>)
13
+
- Update cell background configuration to add the ability to use the appropriate theme color. The `quarto.cells.background` settings have changed names so you may need to update your configuration (<https://github.com/quarto-dev/quarto/pull/679>).
14
+
- Use new command to switch between source and visual editors in Positron (<https://github.com/quarto-dev/quarto/pull/684>).
"markdownDescription": "Show parameter help when editing function calls."
939
939
},
940
940
"quarto.cells.background.enabled": {
941
+
"type": "boolean",
942
+
"description": "Enable coloring the background of executable code cells.",
943
+
"deprecationMessage": "Deprecated: Please use quarto.cells.background.color instead."
944
+
},
945
+
"quarto.cells.background.color": {
941
946
"order": 19,
942
947
"scope": "window",
943
-
"type": "boolean",
944
-
"default": true,
945
-
"markdownDescription": "Enable coloring the background of executable code cells."
948
+
"type": "string",
949
+
"markdownDescription": "Control the background coloring of executable code cells.",
950
+
"default": "default",
951
+
"enum": ["default", "useTheme", "off"],
952
+
"markdownEnumDescriptions": [
953
+
"Use the default light and dark background colors. Specify these colors with `quarto.cells.background.lightDefault` and `quarto.cells.background.darkDefault`.",
954
+
"Use the `notebook.selectedCellBackground` color from the current VS Code theme.",
955
+
"Disable background coloring of executable code cells."
956
+
]
946
957
},
947
-
"quarto.cells.background.light": {
958
+
"quarto.cells.background.lightDefault": {
948
959
"order": 20,
949
960
"scope": "window",
950
961
"type": "string",
951
962
"format": "color",
952
963
"default": "#E1E1E166",
953
-
"markdownDescription": "CSS color for background of executable code cells on light themes.\n\n*Note that this color should include an alpha channel so that selections show up against the background.*"
964
+
"markdownDescription": "CSS color for background of executable code cells on light themes.\n\n*Note that this color should include an alpha channel, like #RRGGBBAA, so that selections show up against the background.*"
954
965
},
955
-
"quarto.cells.background.dark": {
966
+
"quarto.cells.background.darkDefault": {
956
967
"order": 21,
957
968
"scope": "window",
958
969
"type": "string",
959
970
"format": "color",
960
971
"default": "#40404066",
961
-
"markdownDescription": "CSS color for background of executable code cells on dark themes.\n\n*Note that this color should include an alpha channel so that selections show up against the background.*"
972
+
"markdownDescription": "CSS color for background of executable code cells on dark themes.\n\n*Note that this color should include an alpha channel, like #RRGGBBAA, so that selections show up against the background.*"
0 commit comments