mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-09 03:57:39 +00:00
Render newlines as newlines in chat
This commit is contained in:
parent
778856c101
commit
6e1f44163e
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ pub fn render_markdown_mut(
|
|||
_ => {}
|
||||
},
|
||||
Event::HardBreak => text.push('\n'),
|
||||
Event::SoftBreak => text.push(' '),
|
||||
Event::SoftBreak => text.push('\n'),
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue