I do a lot of C++ and Rust programming and I’m having an issue when closing brackets.
fn foo() {
let x = 5;
}
fn bar() {
let x = 5;
} // This should automatically dedent.
This happens fairly often and not just with functions but with structs, classes, branching statements, etc.