#5741
Yutaka Emura
Keymaster

Replace command will not be recorded automatically.

This is what you need:


// JavaScript
docs = new Enumerator( editor.Documents );
for( ; !docs.atEnd(); docs.moveNext() ){
doc = docs.item();
doc.Activate();
doc.selection.Replace( "abc", "def", eeReplaceAll );
}