Scope LSP diagnostic refresh to target folder on folder-scoped settings events #6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Location
src/lib/features/settings/state/diagnostics.svelte.ts:26Problem
When Tauri emits a folder-scoped settings change event,
event.folder_pathidentifies the specific folder modified. However, the event listener iterates over all registered folders in the diagnostic state and triggers an LSP refresh across the entire workspace.Suggested Fix
Check
event.folder_pathand refresh diagnostics only for the affected folder when specified.