使用增量搜索来搜索隐藏文本
在 Visual Stuido 2005 (C# .NET) 中,是否可以使用增量搜索 (Ctrl+I) 来搜索隐藏文本?在“查找替换”窗口中,我选中了“搜索隐藏文本”复选框。但这并不适用于增量搜索。
In Visual Stuido 2005 (C# .NET), is it possible to search through hidden text with the incremental search (Ctrl+I)? In the Find an Replace window I have the checkbox "Search hidden text" checked. But that doesn't seam to apply to the incremental search.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是 VS2010 中的行为 - 搜索隐藏文本会自动展开区域,因此您可能会考虑升级:)。
无论如何,为什么不在使用增量搜索之前和之后使用快捷键 Ctrl-M、Ctrl-L 来“在隐藏和显示状态之间切换所有先前标记的隐藏文本部分”?
为了能够通过一次击键完成此操作,请使用以下代码创建一个宏(从“工具”->“宏”):
Sub OutlineAndIncrementalSearch()
并将该宏绑定到 Ctrl +I 而不是普通的增量搜索命令。
This isn't the behaviour in VS2010 - searching for hidden text uncollapses regions automatically, so you might consider an upgrade :).
In any case, why not use the shortcut Ctrl-M, Ctrl-L which "Toggles all previously marked hidden text sections between hidden and display states" before and after you use incremental search?
To be able to do this in one keystroke, create a macro (From Tools->Macros) with the following code:
Sub OutlineAndIncrementalSearch()
And bind this macro to Ctrl+I instead of the normal incremental search command.