Common issues and solutions for EVC Local Sync.
When opening an issue, please include the following to help us resolve it quickly:
- OS and version (e.g., macOS 15.2, Windows 11 24H2)
- Obsidian version (Settings → About)
- Plugin version (Settings → Community plugins → EVC Local Sync)
- Mapping config (redact any private paths)
- Conflict strategy and sync mode you're using
- Debounce interval if relevant
- Log export — to get this:
- Click the EVC icon in the status bar → View logs
- Click Export CSV in the log viewer
- Attach the downloaded
.csvfile to your issue
The CSV log contains timestamps, file paths, sync direction, actions taken, and any errors — this is the single most useful thing for diagnosing issues.
Warning: Deletion sync propagates file deletions across locations. A file deleted on one side will be removed from the other side on next sync.
If you enable deletion sync, follow these steps to stay safe:
- Enable backups in settings (on by default) — the plugin creates a
.bakcopy before deleting - Enable deletion confirmation — the plugin will show a list of pending deletions and ask before proceeding
- Start with manual sync for the first day — don't combine deletion sync with auto-sync until you're confident
- Run a dry-run first to see what would be deleted
- Never test on your only copy — use a test mapping with non-critical files first
Deletions from Obsidian use the system trash (recoverable). Deletions from the AI project side use permanent fs.unlink — this is why backups matter.
Symptom: The AI project path exists and is correct, but sync finds no files or silently does nothing. No error is shown.
Cause: macOS restricts apps from accessing folders outside their sandbox. After macOS updates, Obsidian may lose permission to read/write external paths (Documents, Downloads, external drives, mounted volumes).
Solutions:
- Open System Settings → Privacy & Security → Files and Folders
- Find Obsidian in the list
- Ensure it has access to the folder (or its parent) where your AI project lives
- If Obsidian is not listed, try opening a file from that location via Obsidian's "Open folder as vault" to trigger the permission prompt
- As a workaround, move the external folder under your home directory (
~/Projects/...) — this usually has fewer restrictions - Restart Obsidian after changing permissions
If the issue persists after granting permissions, check Console.app for sandbox or deny messages related to Obsidian.
Symptom: Files changed but sync shows "no changes found."
Solutions:
- Check that the mapping is enabled in settings
- Verify both paths exist and are accessible
- Ensure the file type is in the allowed list (default:
.md,.canvas,.excalidraw.md) - Check exclude patterns — your file path might match an exclusion
Symptom: Duplicate files appear, or sync creates new files instead of updating existing ones.
Cause: macOS and Windows filesystems are case-insensitive (docs/ and Docs/ are the same folder), but sync paths are strings that can differ in case.
Solution: Make sure the folder names in your mapping match the actual casing on disk. The plugin normalizes case on macOS/Windows automatically since v1.1.0, but mismatched paths in the mapping config itself can still cause issues.
Symptom: Auto-sync doesn't trigger after saving a file.
Solutions:
- Increase the debounce interval in settings (default: 3000ms). Rapid saves within the debounce window are batched into one sync
- Some editors use "atomic saves" (write to temp file, then rename). The watcher should detect this, but if not, try a manual sync first to confirm the mapping works
- Restart the plugin: Settings → Community plugins → toggle off/on
Symptom: Unexpected conflict prompts when editing the same file quickly in both locations.
Solution:
- Avoid editing the same file in both Obsidian and your IDE simultaneously
- If you get frequent conflict prompts, switch to "Newer file wins" conflict resolution for that mapping
- Use dry-run to preview what will happen before syncing
Symptom: Renamed or moved files appear as "new file + deleted file" instead of a rename.
Cause: The plugin tracks files by path, not by content. A rename looks like a deletion of the old path and creation of a new path.
What happens:
- The new file syncs normally (copied to the other side)
- The old file is detected as deleted and synced (removed from the other side) if deletion sync is enabled
Tip: If you rename a folder that contains many files, run a dry-run first to verify the expected changes.
Symptom: Symlinked folders or files are skipped during sync.
Solution: Enable Follow symlinks in the plugin settings. This is disabled by default for safety.
Symptom: Large projects cause noticeable delay during sync.
Solutions:
- Narrow the docs subdirectory — sync only
docs/instead of the entire project - Add exclusion patterns for large or irrelevant folders
- Use manual sync instead of auto-sync to control when it runs
Symptom: Unexpected behavior when using alongside other sync plugins.
Known compatible:
- Obsidian Sync
- Obsidian Git
- Self-hosted LiveSync
Tips:
- Avoid syncing the same folder with multiple sync tools
- If using Obsidian Git, add your AI project path to
.gitignorein the vault (or vice versa)
The plugin creates backups before overwriting files (when enabled in settings). Backups are stored alongside the original file with a timestamp suffix.
If something goes wrong:
- Check the sync log (status bar → View logs) for what was changed
- Look for
.backup-*files in the affected directory (format:filename.md.backup-2026-03-06T14-30-45-123Z) - Use git history in your project repo to recover previous versions