2024年2月29日 7:05 am #31643
Yutaka Emura
キーマスター
いつもお世話になっております。江村です。
行コメントというのは、
//
で始まる行になりますでしょうか?
だとすると、次のマクロを利用できます。
s = document.selection.Text;
if( s.length == 0 ) {
s = document.GetLine( document.selection.GetActivePointY( eePosLogical ) );
}
if( s.length >= 2 && s.substr( 0, 2 ) == "//" ) {
editor.ExecuteCommandByID(4372); // Uncomment
}
else {
editor.ExecuteCommandByID(4371); // Comment
}
よろしくお願いいたします。