英文:
How do I Cmd+D in WebStorm?
问题
我最近开始使用WebStorm,但似乎完全找不到这个功能。这是一个功能,您可以逐个选择文件中的多个匹配文本部分并一起编辑它们。
<kbd>Cmd + D</kbd>只是复制选定的文本。
英文:
I recently started using WebStorm, and I can't seem to find this feature there at all. It's the one where you pick multiple matching bits of text one by one in a file and edit them all together.
<kbd>Cmd + D</kbd> just duplicates the selected text.
答案1
得分: 1
为了在JetBrains IDE中选择下一个出现的位置,您可以使用Alt + J
(或者在MacOS上使用Ctrl + G
)。
要取消选择它,请添加Shift
。
如果您想选择所有出现的位置,请按Ctrl + Shift + Alt + J
(或者在MacOS上使用Ctrl + Cmd + G
)。
英文:
In order to select the next occurrence in JetBrains IDEs, you can use Alt + J
(or Ctrl + G
on MacOS).
To unselect it, add Shift
.
If you want to select all occurrences, press Ctrl + Shift + Alt + J
(or Ctrl + Cmd + G
on MacOS).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论