如何在 netbeans IDE 中将文本括在引号中

发布于 2025-01-06 09:56:48 字数 153 浏览 2 评论 0原文

我有一些文本,例如:

<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 技术交流群。

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

发布评论

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

评论(4

为你鎻心 2025-01-13 09:56:48

如果默认情况下宏不存在,则这里的宏代码将完成您想要的操作

caret-begin-word "'" caret-end-word "'"

caret-begin-word "\"" caret-end-word "\""

注意:这只会将单词括在引号中。不是你的选择。

您还可以突出显示您想要的内容,只需点击 ' 或 " 将突出显示的部分用引号

引起来 在 NetBeans 7.2.1 中测试

If the macro is not there by default here is macro code that will accomplish what you want

caret-begin-word "'" caret-end-word "'"

or

caret-begin-word "\"" caret-end-word "\""

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 quotes

Tested in NetBeans 7.2.1

兔小萌 2025-01-13 09:56:48

正如已经建议的,定义了一个引用单词宏来引用单个单词。

要获得引用所选内容的功能:

  1. 转到工具->选项->编辑器->宏
  2. 单击[新建]创建新宏。称之为引用选择,或者任何你认为最好的名称。
  3. 粘贴以下宏:

    复制到剪贴板“\”“从剪贴板粘贴“\””
    
  4. 单击 [设置快捷方式 ...],然后按所需的快捷方式组合(例如,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:

  1. Go to Tools->Options->Editor->Macros
  2. Click [New] to create a new macro. Call it quote-selection, or whatever seems best to you.
  3. Paste in the following macro:

    copy-to-clipboard "\"" paste-from-clipboard "\""
    
  4. Click [Set Shortcut ...], then press your desired shortcut combination (eg. shift+ctrl+q)

在你怀里撒娇 2025-01-13 09:56:48

转到

Tools->Options->Editor->Macros

,您会发现一个名为 quote-word 的宏,

只需为其分配一个快捷方式,您就可以使用它用引号将单词括起来。

Go to

Tools->Options->Editor->Macros

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.

分开我的手 2025-01-13 09:56:48

NETBEANS IDE 8.2 开始:

//i tried this on linux (debian)  

第 1 步: 首先选择“突出显示”要用引号括起来的文本。
第 2 步:Shift - "

// Shift key and double quotes key 

希望这会有所帮助!

As of NETBEANS IDE 8.2 :

//i tried this on linux (debian)  

STEP 1: First select "highlight" the text you want to be surrounded by quotes.
STEP 2: Press Shift - "

// Shift key and double quotes key 

Hope this helps!!

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