Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
([#11239](https://github.com/Microsoft/vscode-python/issues/11239))
1. Warn when using a version of the widget `qgrid` greater than `1.1.1` with the recommendation to downgrade to `1.1.1`.
([#11245](https://github.com/Microsoft/vscode-python/issues/11245))
1. Change "python.dataScience.runStartupCommands" commands to be a global setting, not a workspace setting.
([#11352](https://github.com/Microsoft/vscode-python/issues/11352))

### Thanks

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2796,13 +2796,13 @@
"default": "",
"deprecationMessage": "This setting has been deprecated in favor of 'runStartupCommands'.",
"description": "A series of Python instructions or iPython magic commands separated by '\\n' that will be executed when the interactive window loads.",
"scope": "resource"
"scope": "application"
},
"python.dataScience.runStartupCommands": {
"type": "string",
"default": "",
"description": "A series of Python instructions or iPython magic commands separated by '\\n' that will be executed when the interactive window loads. For instance, set this to '%load_ext autoreload\\n%autoreload 2' to automatically reload changes made to imported files without having to restart the interactive session.",
"scope": "resource"
"scope": "application"
},
"python.dataScience.debugJustMyCode": {
"type": "boolean",
Expand Down