docs: Include restore_on_startup (#21918)

Signed-off-by: xuoe <xuoe@pm.me>
This commit is contained in:
xuoe 2024-12-12 16:21:27 +02:00 committed by GitHub
parent c204b0d01a
commit 1f296d8f3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -133,6 +133,38 @@ Define extensions which should be installed (`true`) or never installed (`false`
}
```
## Restore on Startup
- Description: Controls session restoration on startup.
- Setting: `restore_on_startup`
- Default: `last_session`
**Options**
1. Restore all workspaces that were open when quitting Zed:
```json
{
"restore_on_startup": "last_session"
}
```
2. Restore the workspace that was closed last:
```json
{
"restore_on_startup": "last_workspace"
}
```
3. Always start with an empty editor:
```json
{
"restore_on_startup": "none"
}
```
## Autoscroll on Clicks
- Description: Whether to scroll when clicking near the edge of the visible text area.