EmEditor (text editor) Forum Index Questions and Answers about Macros
custom find behavior | Register To Post |
| Threaded | Newest First | Previous Topic | Next Topic | Bottom |
| Poster | Thread |
|---|---|
| Thyresias | Posted on: 8/13/2010 12:16 am |
Just popping in ![]() ![]() Joined: 8/6/2008 From: Posts: 3 |
custom find behavior こんにちは
I would like to implement the following behavior in a macro: - if the selection is empty, repeat the last find command - if it is not, find the selected text I tried this: if (document.selection.IsEmpty) document.selection.FindRepeat(eeFindRepeatNext); else document.selection.Find(document.selection.Text, eeFindNext + eeFindAround); It works when the selection is not empty, but when it is, it will repeat the last find entered through the dialog box, not the one performed by the macro through selection.Find. Is there a way: - to store the arguement of selection.Find as the last search - to query EmEditor about the current find settings (ideally, if regular expressions are on, you just want to do "repeat find" even if the selection is not empty) Thanks -- Thierry |
| Yutaka | Posted on: 8/16/2010 7:56 pm |
Webmaster ![]() ![]() Joined: 9/28/2006 From: Redmond Posts: 2423 |
Re: custom find behavior Hello Thyresias,
Can you try adding the eeFindSaveHistory flag to the Find method? This flag should save a searched string. For details, please see: http://www.emeditor.com/help/macro/selection/selection_find.htm Unfortunately, I don't think there are any ways to query EmEditor about the current find settings.
|
| Threaded | Newest First | Previous Topic | Next Topic | Top |
| Register To Post | |




