Add doc on workspace persistence (#25062)

Release Notes:

- N/A
This commit is contained in:
Joseph T. Lyons 2025-02-18 01:07:18 -05:00 committed by GitHub
parent 813d870a03
commit 0e38d2d4f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,7 @@
- [Linux](./linux.md)
- [Windows](./windows.md)
- [Telemetry](./telemetry.md)
- [Workspace Persistence](./workspace-persistence.md)
- [Additional Learning Materials](./additional-learning-materials.md)
# Configuration

View file

@ -0,0 +1,14 @@
# Workspace Persistence
Zed creates local SQLite databases to persist data relating to its workspace and your projects. These databases store, for instance, the tabs and panes you have open in a project, the scroll position of each open file, the list of all projects you've opened (for the recent projects modal picker), etc. You can find and explore these databases in the following locations:
- macOS: `~/Library/Application Support/Zed/`
- Linux: `~/.local/share/Zed`
- Windows: `%LOCALAPPDATA%\Zed`
The naming convention of these databases takes on the form of `0-<zed_channel>`:
- Stable: `0-stable`
- Preview: `0-preview`
**If you encounter workspace persistence issues in Zed, deleting the database and restarting Zed often resolves the problem, as the database may have been corrupted at some point.**