#4604
gen
参加者

下記のマクロを Ctrl+Xに割り付けていたのですが
if( document.selection.IsEmpty == false){
document.selection.Copy( eeCopyUnicode );
document.selection.Delete(1);
}
else{
document.selection.SelectLine();
document.selection.Copy( eeCopyUnicode );
document.selection.Delete(1);
}

document.selection.Delete(1);ではなく
document.selection.SelectLine();のほうかもしれません
選択をせず Ctrl+X で改行のみ残ってしまいます。