|
> ところで、数字を検索すると、数字が点滅します。
ああ、、すみません、それは盲点でした。
> ここを選択範囲にするには、どうすれば良いんでしょうか?
動作環境 - 検索 - 検索での表示 を「範囲選択」にします。
この設定を「点滅表示」のままにしておきたい、という場合は、マクロを次のように
修正します。
setcompatiblemode 0x20200;
$digit = "\\d+(,\\d+)*(\\.\\d+)*";
##oc = column;
##ol = lineno;
selectline;
searchdown2 $digit, regular, inselect;
while (result) {
if (seltopcolumn <= ##oc && ##oc < selendcolumn) {
##fx = foundtopx;
##fy = foundtopy;
moveto foundendx, foundendy;
beginsel;
moveto ##fx, ##fy;
endsel;
break;
}
finddown;
}
if (!result) {
moveto2 ##oc, ##ol;
selectword;
}
|
|