Allow to disable the new feature

This commit is contained in:
Kirill Bulatov 2023-05-23 17:50:50 +03:00
parent b9dabb165e
commit d1f4b60fa1
3 changed files with 6 additions and 1 deletions

View file

@ -2123,7 +2123,7 @@ impl Editor {
this.change_selections(Some(Autoscroll::fit()), cx, |s| s.select(new_selections));
// When buffer contents is updated and caret is moved, try triggering on type formatting.
if text.len() == 1 {
if settings::get::<EditorSettings>(cx).use_on_type_format && text.len() == 1 {
let input_char = text.chars().next().expect("single char input");
if let Some(on_type_format_task) = this.trigger_on_type_format(input_char, cx) {
on_type_format_task.detach_and_log_err(cx);