diff --git a/crates/ide/src/typing.rs b/crates/ide/src/typing.rs index 809ff7d2094a..1378048e51b8 100644 --- a/crates/ide/src/typing.rs +++ b/crates/ide/src/typing.rs @@ -42,6 +42,7 @@ pub(crate) const TRIGGER_CHARS: &str = ".=>{"; // // - typing `let =` tries to smartly add `;` if `=` is followed by an existing expression // - typing `.` in a chain method call auto-indents +// - typing `{` in front of an expression inserts a closing `}` after the expression // // VS Code:: //