|
ヒットするべき文字列が折り返し位置にあると検索されない。
// 再現
// 折り返し文字数 46 〜 51 で再現する
newfile;
config "xColorComment:1 xAutoAdjustOrikaeshi:0 y- k- w46";
insertfix "<span>test test test test test test test test</span>\n";
dupline;
gofiletop;
$s = "</?span>";
searchdown2 $s, casesense, regular, hilight, masktag, maskonly; // NG
//searchdown2 $s, casesense, regular, hilight, masknormal; // NG
//searchdown2 $s, casesense, regular, hilight, maskcomment; // OK
//searchdown2 $s, casesense, regular, hilight; // OK
menu "first hit!";
finddown;
menu "second hit!";
|
|