-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option to use theme provided cell background (#675) #677
Conversation
The new https://github.com/quarto-dev/quarto/actions/runs/13730481250 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much for this PR @kylebutts! 🙌
We are unfortunately getting to some dependencies between settings here, like the problem outlined at:
https://design.tidyverse.org/independent-meaning.html
The settings with the bad dependencies between them here are:
quarto.cells.background.enabled
- the two colors
quarto.cells.background.light
andquarto.cells.background.dark
- the new
quarto.cells.background.useTheme
If we were starting out from scratch, I would want to make the setting called quarto.cells.background.enabled
an enum (find "enum / enumDescriptions / markdownEnumDescriptions / enumItemLabels" here) with options:
- "default" (maybe then change the colors to
quarto.cells.background.darkDefault
andquarto.cells.background.lightDefault
) - "useTheme"
- "off"
If we make that change now, it would be breaking for people who have set quarto.cells.background.enabled
to false. I would imagine this is a very small number of people (no one has checked this setting in to GitHub at least) and I personally would be willing to make such a breaking change.
@cscheid What do you think? I think this is a very good change in this PR, but where do you land on the relative badness of a breaking change in settings vs. confusing interaction of settings?
apps/vscode/package.json
Outdated
"type": "string", | ||
"format": "color", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"type": "string", | |
"format": "color", | |
"type": "boolean", |
This is more like true vs. false, not a string formatted as a color, like what is show in this example:
https://code.visualstudio.com/api/references/contribution-points#Configuration-example
An example in this file is "quarto.cells.background.enabled"
.
apps/vscode/package.json
Outdated
"type": "string", | ||
"format": "color", | ||
"default": false, | ||
"markdownDescription": "Should the background of executable code cells be based on the theme provided color.\n\nThis uses the `notebook.selectedCellBackground` color from the VSCode theme." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"markdownDescription": "Should the background of executable code cells be based on the theme provided color.\n\nThis uses the `notebook.selectedCellBackground` color from the VSCode theme." | |
"markdownDescription": "Use the `notebook.selectedCellBackground` color from the current theme as the background of executable code cells." |
Great, thanks for the feedback @juliasilge. I'll wait for feedback on your question and will either implement these changes or you suggested |
My personal philosophy wrt breaking changes.
If I understand it right, not a lot of users appear to be exposed to the breakage here. If so, I would go ahead and make a breaking change. With that said, the specific change towards making |
How about this set of settings?
|
…-dev#649) * fix: add offset to ensure `#|` is added at the beginning Fixes quarto-dev#426 * chore: add changelog entry
Crud, I messed up the commit when rebasing. I can open a new PR if you want. But, I have implemented what @juliasilge recommended |
This is looking good, @kylebutts! 🙌 Thank you so much for iterating on this with us. It looks like something hasn't quite gone right and we have lost the defaults for Can you take a look? It's possible it's the whitespace changes on 973 and 974? 🤷♀️ Also, can you make an update in And yeah, it looks like 0e61dc2 got applied as a new, separate commit with the same changes as e268ba4, so if you could revert that commit or start over or similar, that would be fantastic. Thank you again for your perseverance here! |
@juliasilge I think what's happening is that |
Ah gotcha! Yes, let's do |
Moved to #679 |
Adds option
cells.background.useTheme
that when true will use the theme's built in cell background.Positron Light:


Gruvbox Light Soft: