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
Allows user to always use the light theme in the
Python Interactive Window
For #4640
<!--
If an item below does not apply to you, then go ahead and check it off as "done" and strikethrough the text, e.g.:
- [x] ~Has unit tests & system/integration tests~
-->
- [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR)
- [x] Title summarizes what is changing
- [x] Has a [news entry](https://github.com/Microsoft/vscode-python/tree/master/news) file (remember to thank yourself!)
- [ ] Has sufficient logging.
- [ ] Has telemetry for enhancements.
- [x] Unit tests & system/integration tests are added/updated
- [ ] [Test plan](https://github.com/Microsoft/vscode-python/blob/master/.github/test_plan.md) is updated as appropriate
- [ ] [`package-lock.json`](https://github.com/Microsoft/vscode-python/blob/master/package-lock.json) has been regenerated by running `npm install` (if dependencies have changed)
- [ ] The wiki is updated with any design decisions/details.
Copy file name to clipboardExpand all lines: package.json
+6
Original file line number
Diff line number
Diff line change
@@ -1370,6 +1370,12 @@
1370
1370
"description": "Allow the Python Interactive window to be shared during a Live Share session",
1371
1371
"scope": "resource"
1372
1372
},
1373
+
"python.dataScience.ignoreVscodeTheme": {
1374
+
"type": "boolean",
1375
+
"default": false,
1376
+
"description": "Don't use the VS Code theme in the Python Interactive window (requires reload of VS Code). This forces the Python Interactive window to use 'Light +(default light)' and disables matplotlib defaults.",
<CellButtonbaseTheme={this.props.baseTheme}onClick={this.collapseAll}disabled={!this.canCollapseAll()}tooltip={getLocString('DataScience.collapseAll','Collapse all cell inputs')}>
<CellButtonbaseTheme={baseTheme}onClick={this.collapseAll}disabled={!this.canCollapseAll()}tooltip={getLocString('DataScience.collapseAll','Collapse all cell inputs')}>
<CellButtonbaseTheme={this.props.baseTheme}onClick={this.expandAll}disabled={!this.canExpandAll()}tooltip={getLocString('DataScience.expandAll','Expand all cell inputs')}>
<CellButtonbaseTheme={baseTheme}onClick={this.expandAll}disabled={!this.canExpandAll()}tooltip={getLocString('DataScience.expandAll','Expand all cell inputs')}>
<CellButtonbaseTheme={this.props.baseTheme}onClick={this.export}disabled={!this.canExport()}tooltip={getLocString('DataScience.export','Export as Jupyter Notebook')}>
<CellButtonbaseTheme={baseTheme}onClick={this.export}disabled={!this.canExport()}tooltip={getLocString('DataScience.export','Export as Jupyter Notebook')}>
0 commit comments