Skip to content

Commit 99d9681

Browse files
authored
Move runStartupCommand to global location (#11409)
* Move startup to global (#11402) * Update change log
1 parent 2a09546 commit 99d9681

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
([#11239](https://github.com/Microsoft/vscode-python/issues/11239))
1313
1. Warn when using a version of the widget `qgrid` greater than `1.1.1` with the recommendation to downgrade to `1.1.1`.
1414
([#11245](https://github.com/Microsoft/vscode-python/issues/11245))
15+
1. Change "python.dataScience.runStartupCommands" commands to be a global setting, not a workspace setting.
16+
([#11352](https://github.com/Microsoft/vscode-python/issues/11352))
1517

1618
### Thanks
1719

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2796,13 +2796,13 @@
27962796
"default": "",
27972797
"deprecationMessage": "This setting has been deprecated in favor of 'runStartupCommands'.",
27982798
"description": "A series of Python instructions or iPython magic commands separated by '\\n' that will be executed when the interactive window loads.",
2799-
"scope": "resource"
2799+
"scope": "application"
28002800
},
28012801
"python.dataScience.runStartupCommands": {
28022802
"type": "string",
28032803
"default": "",
28042804
"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.",
2805-
"scope": "resource"
2805+
"scope": "application"
28062806
},
28072807
"python.dataScience.debugJustMyCode": {
28082808
"type": "boolean",

0 commit comments

Comments
 (0)