docs: Remove invalid preferred_line_length option value from soft_wrap (#55538)

This PR updates the documentation to remove the no longer valid
`preferred_line_length` option value from `soft_wrap`.

Self-Review Checklist:

- [x] I've reviewed my own diff for quality, security, and reliability
- [x] Unsafe blocks (if any) have justifying comments
- [x] The content is consistent with the [UI/UX
checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist)
- [x] Tests cover the new/changed behavior
- [x] Performance impact has been considered and is acceptable

Release Notes:

- N/A
This commit is contained in:
raptor 2026-05-03 16:30:09 +02:00 committed by GitHub
parent c97ad4692f
commit 57d9512ce0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3932,8 +3932,7 @@ Positive integer values
1. `none` to avoid wrapping generally, unless the line is too long
2. `prefer_line` (deprecated, same as `none`)
3. `editor_width` to wrap lines that overflow the editor width
4. `preferred_line_length` to wrap lines that overflow `preferred_line_length` config value
5. `bounded` to wrap lines at the minimum of `editor_width` and `preferred_line_length`
4. `bounded` to wrap lines at the minimum of `editor_width` and `preferred_line_length`
## Show Wrap Guides