在 Netbeans IDE 中,所需的行为是当我按 b 然后按空格时,它会创建两个大括号,光标位于中间
当我按 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
转到工具/选项/编辑器/代码模板。为字母 b 创建一个新模板(新建、键入 b、Ok),然后在扩展文本中键入以下内容em>:
最后,将扩展模板设置为空格。
顺便说一句,您可以通过按 { 并按 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:
Finally, set Expand Template on to Space.
By the way, you can get the same behavior by pressing {, and hitting an enter.