こんにちは
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