git: Fix commit modal contents being searchable (#35099)
Fixes #35093 Release Notes: - Fixed Git commit editor being searchable.
This commit is contained in:
parent
985350f9e8
commit
abb3ed1ed1
1 changed files with 3 additions and 0 deletions
|
@ -380,6 +380,9 @@ pub(crate) fn commit_message_editor(
|
|||
window: &mut Window,
|
||||
cx: &mut Context<Editor>,
|
||||
) -> Editor {
|
||||
project.update(cx, |this, cx| {
|
||||
this.mark_buffer_as_non_searchable(commit_message_buffer.read(cx).remote_id(), cx);
|
||||
});
|
||||
let buffer = cx.new(|cx| MultiBuffer::singleton(commit_message_buffer, cx));
|
||||
let max_lines = if in_panel { MAX_PANEL_EDITOR_LINES } else { 18 };
|
||||
let mut commit_editor = Editor::new(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue