disable wrap guides in the assitant panel

This commit is contained in:
Mikayla Maki 2023-07-28 22:27:36 -07:00
parent 0bd6e7bac3
commit d58f031696
No known key found for this signature in database
2 changed files with 12 additions and 0 deletions

View file

@ -1637,6 +1637,7 @@ impl ConversationEditor {
let mut editor = Editor::for_buffer(conversation.read(cx).buffer.clone(), None, cx);
editor.set_soft_wrap_mode(SoftWrap::EditorWidth, cx);
editor.set_show_gutter(false, cx);
editor.set_show_wrap_guides(false, cx);
editor
});