如何在 netbeans IDE 中将文本括在引号中
我有一些文本,例如:
<td id=asd >
netbeans 中是否有快捷方式,可以将选定的文本用引号引起来?
<td id="asd" >
I have some text, say:
<td id=asd >
Is there a shortcut in netbeans, where a selected text can be surrounded by quotes?
<td id="asd" >
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果默认情况下宏不存在,则这里的宏代码将完成您想要的操作
或
注意:这只会将单词括在引号中。不是你的选择。
您还可以突出显示您想要的内容,只需点击
' 或 "
将突出显示的部分用引号引起来 在 NetBeans 7.2.1 中测试
If the macro is not there by default here is macro code that will accomplish what you want
or
NOTE: This will only surround a WORD in quotes. Not your selection.
You can also highlight what you want and just hit
' or "
to surround the highlighted portion in quotesTested in NetBeans 7.2.1
正如已经建议的,定义了一个引用单词宏来引用单个单词。
要获得引用所选内容的功能:
粘贴以下宏:
单击 [设置快捷方式 ...],然后按所需的快捷方式组合(例如,shift+ctrl+q)
As already suggested, there is a quote-word macro defined that will quote a single word.
To gain the ability to quote a selection:
Paste in the following macro:
Click [Set Shortcut ...], then press your desired shortcut combination (eg. shift+ctrl+q)
转到
,您会发现一个名为
quote-word
的宏,只需为其分配一个快捷方式,您就可以使用它用引号将单词括起来。
Go to
and you will find a macro called
quote-word
Just assign a shortcut to it and you can use it to surround a word with quotes.
从
NETBEANS IDE 8.2 开始:
第 1 步: 首先选择“突出显示”要用引号括起来的文本。
第 2 步: 按
Shift - "
希望这会有所帮助!
As of
NETBEANS IDE 8.2 :
STEP 1: First select "highlight" the text you want to be surrounded by quotes.
STEP 2: Press
Shift - "
Hope this helps!!