英文:
Edit or delete all selection match highlightnings
问题
当我选择一个单词时,我会看到所有匹配项都被高亮显示。
我如何一次编辑或删除所有出现的内容?
在这个示例中,我想将所有出现的内容都更改为param
。
英文:
When I select a word, I get all matches highlit.
How do I edit or remove all occurrences all at the same time?
In this example, I woluld like to change all occurences to param
.
答案1
得分: 1
你需要使用VS2022的多重光标功能。
一旦你做出了初始选择,你可以使用 编辑 -> 多重光标 -> 插入所有匹配的光标
功能。
默认情况下,这个功能映射为:Shift+Alt+;。
这将在所有高亮/匹配的部分添加新的光标,允许你同时编辑它们。
VS2022中的多光标支持非常丰富。你可以在官方文档中探索更多选项。
英文:
You're going to want to make use of VS2022's Multiple Caret functionality.
Once you've made the initial selection you can use Edit -> Multiple Carets -> Insert Carets At All Matching
functionality.
By default, this function is mapped to: <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>;</kbd>
This will add a new caret to each of the highlighted/matching sections allowing you to edit them simultaneously.
Multi-caret support in VS2022 is quite extensive. You can explore more options in the official documentation.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论