Document } insertion

This commit is contained in:
Jonas Schievink 2021-04-07 17:19:42 +02:00
parent 39d59fb06f
commit d789cf8f31

View file

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