We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 754b4c9 commit 3211086Copy full SHA for 3211086
crates/ide/src/typing.rs
@@ -39,6 +39,14 @@ pub(crate) const TRIGGER_CHARS: &str = ".=>";
39
//
40
// - typing `let =` tries to smartly add `;` if `=` is followed by an existing expression
41
// - typing `.` in a chain method call auto-indents
42
+//
43
+// VS Code::
44
45
+// Add the following to `settings.json`:
46
+// [source,json]
47
+// ----
48
+// "editor.formatOnType": true,
49
50
pub(crate) fn on_char_typed(
51
db: &RootDatabase,
52
position: FilePosition,
0 commit comments