#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
}

引用元: https://stackoverflow.com/questions/73760657/is-there-a-shortcut-to-comment-and-uncomment-in-emeditor

よろしくお願いいたします。