|
nohhosoさん
>その際、各行の先頭にファイル名と行番号が出力されますが、これを出力しない
>ようにする方法がありますでしょうか。
grep コマンドの代わりに次のようなマクロを使えばとりあえずはできませんか?
//---------------------------------------------------------//
if( !selecting ) selectword;
$word = gettext( seltopx, seltopy, selendx, selendy );
grepdialog2 $word, "(現在の内容)", ".";
if( result < 0 ) endmacro;
#so = searchoption;
$sb = searchbuffer;
replaceall "^.+?\\f\\([0-9]+\\): ", "", regular;
//行番号も消去
//replaceall "^.+?\\f\\([0-9]+\\)", "\\1", regular;
//ファイル名のみ消去
setsearch $sb, #so;
endmacro;
//---------------------------------------------------------//
では, (^^)/~
山紫水明(ユーザー)
SANSHISUIMEI
|
|