在文本编辑器和IDE中寻找查找和替换用户界面的好例子(Seeking good examples of Find and Replace user interfaces in text editors and IDEs)

我正在使用集成文本编辑器(如IDE)处理Windows应用程序。 目前的查找和替换功能使用标准的Windows对话框,这些对话框显示了它们的年龄并且功能不是很强大。

在文本编辑器或IDE中,您了解查找和替换功能有哪些好的例子? 我在寻找外观和感觉,易用性,强大的功能,整个作品的灵感。 谢谢!

注意:我当然对超级强大的编辑 - 整个工作空间一次性IDE功能感兴趣,但我也对简单但优雅的UI感兴趣,比如Firefox的查找栏或Chrome的查找选项卡。

编辑:我接受了理查德的文章,因为它谈到了几种不同的查找和替换UI,但所有的答案都非常有帮助 - 谢谢!

I'm working on a Windows application with an integrated text editor, like an IDE. The current Find and Replace features use the standard Windows dialogs, which are showing their age and aren't very powerful.

What great examples do you know of Find and Replace functionality, in text editors or IDEs? I'm looking for inspiration for look and feel, ease of use, powerful functionality, the whole works. Thanks!

Note: I'm certainly interested in super-powerful edit-your-whole-workspace-at-once IDE features, but I'm also interested in simple but elegant UI's like Firefox's Find bar, or Chrome's find tab.

Edit: I've accepted Richard's post because it talked about several different kinds of Find and Replace UI, but all the answers were very helpful - thanks!

最满意答案

在Visual Studio中查找包含许多选项:

从工具栏(或控制-D)快速查找。 增量搜索 可通过选项查找当前文件,所有打开的文件,当前项目或整个工作区的可停靠对话框。 纯文本,整个词和正则表达式的支持 在命名(用户可定义)文件夹组中查找文件。

用户文档在这里 。

Find in Visual Studio includes many options:

Quick find from tool bar (or control-D). Incremental search Dockable dialogue with options to find across current file, all open files, current project or whole workspace. Plain text, whole word and regex support Find in files, with named (user definable) sets of folders.

User documentation is here.

更多推荐