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: package.nls.json
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@
11
11
"python-envs.terminal.autoActivationType.shellStartup": "Activation by modifying the terminal shell startup script. To use this feature we will need to modify your shell startup scripts.",
12
12
"python-envs.terminal.autoActivationType.off": "No automatic activation of environments.",
13
13
"python-envs.terminal.useEnvFile.description": "Controls whether environment variables from .env files and python.envFile setting are injected into terminals.",
14
+
"python-env.globalSearchPaths.description": "Global search paths for Python environments. Absolute directory paths that are searched at the user level.",
15
+
"python-env.workspaceSearchPaths.description": "Workspace search paths for Python environments. Can be absolute paths or relative directory paths searched within the workspace.",
'Error: python-env.workspaceSearchPaths is set at the user/global level, but this setting can only be set at the workspace or workspace folder level.',
468
+
);
469
+
}
470
+
471
+
// For workspace settings, prefer workspaceFolder > workspace
472
+
if(inspection?.workspaceFolderValue){
473
+
returninspection.workspaceFolderValue;
474
+
}
475
+
476
+
if(inspection?.workspaceValue){
477
+
returninspection.workspaceValue;
478
+
}
479
+
480
+
// Default empty array (don't use global value for workspace settings)
0 commit comments