Find All Feature request

Post any comments, suggestions, annoyances or ideas for future releases here. Please do not post bug reports or questions here.
Post Reply
pwdiener
Posts: 134
Joined: Wed Jul 11, 2007 3:45 pm

Find All Feature request

Post by pwdiener »

I'm a new Zeus user and have a feature request. One of the things I really miss is the "all" option on Find. This feature populates an output window with all the lines containing the search string. The output window then allows positioning in the source window, kind of like the compiler output window.

Is there a way to accomplish this in Zeus? I'm sure I could write a macro to do the "find all" (from reading other forum entries it looks pretty easy), but any ideas or hints on how to accomplish the output window functionality?
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Post by jussij »

One of the things I really miss is the "all" option on Find. This feature populates an output window with all the lines containing the search string. The output window then allows positioning in the source window, kind of like the compiler output window.

Is there a way to accomplish this in Zeus?

The Zeus Edit, Find in Files menu option should be able to achieve this this.

But I personally use the Tools, DOS Command Line menu for this sort of thing. Using this menu I would type in the following arguments command line:

Code: Select all

xfgrep -f -n -i something_to_look_for "$fn"
The something_to_look_for is the text to be found and the $fn represents the currently active file.

For more information on the -f -n -i options use the same menu and just type in this argument command line:

Code: Select all

xfgrep -?
Cheers Jussi
Post Reply