|
手元にあるマクロを、切り張りして作ってみました。
動作がおかしかったら、連絡してください。
=====切り取ってファイルにSAVEしてください。================================
//--------------------------------------------------------------------------
//
// マクロ名称 : COMMENT.MAC
//
//
//
// 機能概要 : 選択した行の先頭に指定したキャラクタをPASTE
//
//
// 注意事項 : 特になし
//
//
//
// 作 成 者 : プックン 99.01.29
//
//
// 修正履歴 :
//
// 修正日 修正者 修正概要
//
// ------------------------------------------------------------------------
//
if (!selecting) {
message "文字列追加プロセス:\n\n範囲選択してから実行してください。";
endmacro;
}
while ( 1 ) {
menu "◆◆ コメントマーク ◆◆",
"( &1 ) ; ",
"( &2 ) > ",
"( &3 ) , ",
"( &4 ) // ",
"( &5 ) その他 ";
if ( result != 1 ) break;
}
if( result == 0 ) endmacro;
else if( result == 2 ) replaceallfast "^", ";", regular,inselect;
else if( result == 3 ) replaceallfast "^", ">", regular,inselect;
else if( result == 4 ) replaceallfast "^", ",", regular,inselect;
else if( result == 5 ) replaceallfast "^", "//", regular,inselect;
else if( result == 6 )
{ $other = input( "挿入する文字列の指定: " );
if ( result != 1 ) endmacro;
replaceallfast "^", $other, regular,inselect;
}
//=====切り取ってファイルにSAVEしてください。===============================
=
|
|