Hi,
Does anyone know how to configure, or what plugins can be used, to obtain comment continuation in VS Code? I'm finding myself writing a lot of doc comments in it lately, and it'd be great to have comment prefixes auto-inserted on newline.The behavior I'm looking for is as follows:
If I'm writing here:
//! some text here<cursor here>
And I press enter, I would like it to end up here:
//! some text here
//! <cursor here>
(I currently just end up with this:)
//! some text here
<cursor here>
I know I've found this behavior in other editors, like IntelliJ and kakoune. But I'm hoping to get this working in VS Code, as it's my current best option for writing Rust.
I'm asking this here as I would assume some of you have run into this - VS Code is one of the favored editors for Rust, and Rust's choice to prefer //!
to block comments makes writing docs without this kind of feature pretty annoying.
Thanks!