在 Netbeans IDE 中,所需的行为是当我按 b 然后按空格时,它会创建两个大括号,光标位于中间

发布于 2024-08-11 09:34:35 字数 97 浏览 10 评论 0原文

当我按 b-space 获取代码块时,它会:

{
(cursor here)
}

我怎样才能完成这个任务?谢谢。

when I press b-space for code block it does:

{
(cursor here)
}

How can I go about accomplishing this? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

驱逐舰岛风号 2024-08-18 09:34:35

转到工具/选项/编辑器/代码模板。为字母 b 创建一个新模板(新建、键入 bOk),然后在扩展文本中键入以下内容em>:

{
    ${cursor}
}

最后,将扩展模板设置为空格

顺便说一句,您可以通过按 { 并按 Enter 键来获得相同的行为。

Go to Tools/Options/Editor/Code Templates. Create a new template for the letter b (New, type b, Ok), then type the following into Expanded Text:

{
    ${cursor}
}

Finally, set Expand Template on to Space.

By the way, you can get the same behavior by pressing {, and hitting an enter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文