From 9d965bc98aa9ce66eb8f5a0ee713312184855588 Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Fri, 21 Mar 2025 10:00:01 -0400 Subject: [PATCH] Change default Markdown `soft_wrap` to "bounded" (#27205) - Follow-up to: https://github.com/zed-industries/zed/pull/26247 Previously with defaults meant that Markdown would softwrap even if you had available window space (soft_wrap occurred at default `preferred_line_length` of 80). Release Notes: - Changed Markdown default to soft_wrap at window width instead of preferred_line_length --- assets/settings/default.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 0b2d67afa7e11a586f6a03738ca319f9d637bd23..bb587b1bcb7f2c7a0193a627cbc5785d719d3323 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -1228,7 +1228,7 @@ "format_on_save": "off", "use_on_type_format": false, "allow_rewrap": "anywhere", - "soft_wrap": "bounded", + "soft_wrap": "editor_width", "prettier": { "allowed": true }