diff options
-rw-r--r-- | crates/ide/src/typing.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ide/src/typing.rs b/crates/ide/src/typing.rs index 809ff7d20..1378048e5 100644 --- a/crates/ide/src/typing.rs +++ b/crates/ide/src/typing.rs | |||
@@ -42,6 +42,7 @@ pub(crate) const TRIGGER_CHARS: &str = ".=>{"; | |||
42 | // | 42 | // |
43 | // - typing `let =` tries to smartly add `;` if `=` is followed by an existing expression | 43 | // - typing `let =` tries to smartly add `;` if `=` is followed by an existing expression |
44 | // - typing `.` in a chain method call auto-indents | 44 | // - typing `.` in a chain method call auto-indents |
45 | // - typing `{` in front of an expression inserts a closing `}` after the expression | ||
45 | // | 46 | // |
46 | // VS Code:: | 47 | // VS Code:: |
47 | // | 48 | // |