Open
Description
Any code assist that generates some kind of function creates it with the standard rust (K&R) bracket style:
fn foo() {
// Do stuff...
}
I would really like to change it to BSD style, as that is the style that my whole codebase uses:
fn foo()
{
// Do stuff...
}
Does there exist a setting that I can change, or is this something that would need a codebase change?
Metadata
Metadata
Assignees
Labels
No labels