|
> 要望は秀丸エディタ本体の「検索」に対してではなく、マクロで呼び出せる関数の
> 「FindRegular, FindRegularNoCaseSense」を実行した結果に対してです。
ってことであれば、HmJre.dll側で対応する話になります。それはそれで技術
的に可能ではあります。ただし、タグの情報はJRE2構造体の中に持つような形に
なるので、やるとしたら、
#handle = dllfunc("JremacAllocate");
#n = dllfunc("JremacCompile", #handle, "pattern...");
#n = dllfunc("JremacGetMatchInfo", #handle, "string", #x );
#n = dllfunc("JremacGetTagPosition", #handle, #TagNumber);
#n = dllfunc("JremacGetTagLength", #handle, #TagNumber);
#n = dllfunc("JremacFree", #handle);
みたいな難しい関数群を追加する形にしないとダメかもしれません。
|
|