Following the instructions... created .zed/settings.json and added
"lsp": {
"tinymist": {
"settings": {
"exportPdf": "onSave",
"outputPath": "$root/$name"
}
}
}
Zed popup:
"Failed to set local settings in ".zed/settings.json":
invalid type: string "lsp", expected struct
ProjectSettingsContent at line 1 column 5
This fixes it:
{
"settings": {
"lsp": {
"tinymist": {
"settings": {
"exportPdf": "onSave",
"outputPath": "$root/$name"
}
}
}
}
}
Following the instructions... created .zed/settings.json and added
Zed popup:
"Failed to set local settings in ".zed/settings.json":
invalid type: string "lsp", expected struct
ProjectSettingsContent at line 1 column 5
This fixes it: