diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 1db383e6ebf2dba7c80e3569cff6313f2d46222d..aa1081e509791dbe791e583d536c64254ab33784 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -101,6 +101,7 @@ use serde::{Deserialize, Serialize}; use settings::{Settings, SettingsStore}; use smallvec::SmallVec; use snippet::Snippet; +use std::ops::Not as _; use std::{ any::TypeId, borrow::Cow, @@ -2951,13 +2952,10 @@ impl Editor { } pub fn insert(&mut self, text: &str, cx: &mut ViewContext) { - self.insert_with_autoindent_mode( - text, - Some(AutoindentMode::Block { - original_indent_columns: Vec::new(), - }), - cx, - ); + let autoindent = text.is_empty().not().then(|| AutoindentMode::Block { + original_indent_columns: Vec::new(), + }); + self.insert_with_autoindent_mode(text, autoindent, cx); } fn insert_with_autoindent_mode(