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
* auto-locate sub-projects inside of monorepos
* add config option to set focused projects inside of the workspace
* rewrite config description
* ensure focused projects are set on startup
* standardize test paths
* rename private method inside of setup
* update user facing text
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,7 @@ These are the VS Code [settings] available for the Extension:
151
151
|`dvc.dvcPath`| Path or shell command to the DVC binary. Required unless Microsoft's [Python extension] is installed and the `dvc` package found in its environment. |
152
152
|`dvc.pythonPath`| Path to the desired Python interpreter to use with DVC. Should only be utilized when using a virtual environment without Microsoft's [Python extension]. |
153
153
|`dvc.experimentsTableHeadMaxHeight`| Maximum height of experiment table head rows. |
154
+
|`dvc.focusedProjects`| A subset of paths to the workspace's available DVC projects. Using this option will override project auto-discovery. |
154
155
|`dvc.doNotShowWalkthroughAfterInstall`| Do not prompt to show the Get Started page after installing. Useful for pre-configured development environments |
155
156
|`dvc.doNotRecommendRedHatExtension`| Do not prompt to install the Red Hat YAML extension, which helps with DVC YAML schema validation (`dvc.yaml` and `.dvc` files). |
156
157
|`dvc.doNotShowCliUnavailable`| Do not warn when the workspace contains a DVC project but the DVC binary is unavailable. |
Copy file name to clipboardExpand all lines: extension/package.nls.json
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,8 @@
75
75
"command.views.experimentsTree.selectExperiments": "Select Experiments to Display in Plots",
76
76
"command.views.plotsPathsTree.selectPlots": "Select Plots to Display",
77
77
"command.views.plotsPathsTree.refreshPlots": "Refresh Plots for Selected Experiments",
78
+
"config.focusedProjects.description": "A subset of paths to the workspace's available DVC projects. Using this option will override project auto-discovery. Only absolute paths inside of the workspace will be included. All other DVC projects in the workspace will be ignored.",
79
+
"config.focusedProjects.title": "DVC project path(s) to include.",
78
80
"config.doNotRecommendRedHatExtension.description": "Do not prompt to install the Red Hat YAML extension, which helps with DVC YAML schema validation.",
79
81
"config.doNotRecommendRedHatExtension.title": "Do not recommend the YAML extension.",
80
82
"config.doNotShowCliUnavailable.description": "Do not warn when the workspace contains a DVC project but the DVC binary is unavailable.",
0 commit comments