-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Will your extension support folder .vscode/settings.json
on a workspace?
#64
Comments
https://code.visualstudio.com/docs/getstarted/settings According to Microsoft's documentation, the workspace settings will always override the user's public settings. If you don't want workspace setting, you should remove it. |
I do not mean the workspace settings; I want to override the user settings with a project root folder ( Only on an explorer (without workspace), your extension supports to override the project root folder settings with the user settings. Compare that image above (with workspace) with the image below (without workspace): You can see "Open Folder" (your extensions supports) and "Add Folder to Workspace" (your extension does not support): Remember not to confound project root folder containing You can see how @valentjn's vscode-ltex supports project root folder settings both with or without a workspace. You can see the image above that |
Hello!
On a specific project with a folder
.vscode
on a workspace, I would not like to addMarkdownPaste.path
setting to the global user settings, because it would be boring to always change the path inMarkdownPaste.path
at the global user setting.For example, on a global user
settings.json
:On a specific project's folder containing
.vscode/settings.json
:When I press
Ctrl/Cmd
+Alt
+V
, I have to rename and type alwaysassets/images/examples
, because of"MarkdownPaste.path": "${fileDirname}/blabla/images/"
, but I find it too tired, and it is not supported for folder settings on a workspace. I do not want to apply"MarkdownPaste.path": "${fileDirname}/blabla/assets/images/examples"
to the global user settings, because it is for the specific project and not for all projects.You can analyse the screenshot, observing the tree:
The text was updated successfully, but these errors were encountered: