-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Config leak between multiple zed windows #70
Comments
So we can try to reproduce this, how exactly are you doing this? |
Project A:
{
"javascript": {
"formatter": {
"enabled": true,
"quoteStyle": "double"
}
}
}
const hello = "world 1"; Project B:
{
"javascript": {
"formatter": {
"enabled": true,
"quoteStyle": "single"
}
}
}
const hello = "world 2"; Now open both projects with zed in separate windows. Try to apply formatting to These are my zed settings regarding biome: {
"lsp": {
"biome": {
"settings": {
"require_config_file": true
}
}
},
"code_actions_on_format": {
"source.fixAll.biome": true,
"source.organizeImports.biome": true
}
} |
Would you mind putting all this into a repo? You can use our tool And how are you opening zed? Are you just running |
Here's a minimal reproduction repo: https://github.com/Marcisbee/zed-repro-1 Readme contains all the steps needed to repdouce this. I'm on latest zed version as of now |
I have multiple projects and I tend to open them multiple of them at once in separate zed windows. All of them have biome.json, but some of them have different formatting settings. And I noticed that one project formatting settings leak into other zed window where formatting should be different (talking about line width and quote type).
When I open zed windows one project at a time, then everything works as expected.
The text was updated successfully, but these errors were encountered: