如何配置 VSCode 以在多行注释中自动插入注释字符
How to configure VSCode to auto insert comment chars on multi line comments
有没有办法配置 VSCode 以便我可以写多行注释。
在 Rust 中,注释以 //
或 ///
开头。如果我写了这样的评论,那么当我按下 Enter 键时编辑器会自动在新行的开头插入 ///
就好了。
VSCode 中没有设置可以执行此操作。这是一项 语言 功能,必须由支持该语言的扩展开发。
我查看了两个 Rust 扩展 (Rust and Rust Code),但其中 none 提供了此功能。你应该在你的扩展的 repo 上填写一个问题。
2020 年更新:rust-analyzer
扩展现在 has support for comment continuation on pressing Enter, although it is not enabled by default.
作为替代方案,Auto Comment Blocks extension 似乎为多种语言提供此功能,包括 Rust。
有没有办法配置 VSCode 以便我可以写多行注释。
在 Rust 中,注释以 //
或 ///
开头。如果我写了这样的评论,那么当我按下 Enter 键时编辑器会自动在新行的开头插入 ///
就好了。
VSCode 中没有设置可以执行此操作。这是一项 语言 功能,必须由支持该语言的扩展开发。
我查看了两个 Rust 扩展 (Rust and Rust Code),但其中 none 提供了此功能。你应该在你的扩展的 repo 上填写一个问题。
2020 年更新:rust-analyzer
扩展现在 has support for comment continuation on pressing Enter, although it is not enabled by default.
作为替代方案,Auto Comment Blocks extension 似乎为多种语言提供此功能,包括 Rust。