|
あくつです。
タイトルが
(無題) - 秀丸
になっていると大丈夫ですが、
(無題)(更新) - 秀丸
だとダメですね。このことでしょうか。
clearupdates も title "(無題) - 秀丸"; も効きません。
以下でごまかすとか。
//if( filetype != "new" ) endmacro;
//if( basename != "" ) endmacro;
menu".txt(&T)",
".c .cpp(&C)",
".h(&H)",
".mac(&M)",
".ini(&I)",
".asm(&A)",
".html(&X)";
if( result==0 ) endmacro;
##old = hidemaruhandle(0);
if ( result == 1) {
openfile "/c.txt";
}
else if ( result == 2 ) {
openfile "/c.cpp";
}
else if ( result == 3 ) {
openfile "/c.h";
}
else if ( result == 4 ) {
openfile "/c.mac";
}
else if ( result == 5 ) {
openfile "/c.ini";
}
else if ( result == 6 ) {
openfile "/c.asm";
}
else if ( result == 7 ) {
openfile "/c.html";
}
##new = hidemaruhandle(0);
if( ##new == ##old ) endmacro;
setactivehidemaru ##old;
disabledraw;
##cx = x; ##cy = y;
selectall; cut;
setactivehidemaru ##new;
closehidemaruforced ##old;
disabledraw;
paste;
moveto ##cx, ##cy;
endmacro;
|
|