#29747
Yutaka Emura
キーマスター

nory 様

いつもお世話になっております。

以下のようなマクロを作成し、それぞれ下矢印、上矢印のキーに割り当てていただければ、ご希望の動作になります。

LineDown.jsee

y = document.selection.GetActivePointY(eePosLogical);
document.selection.LineDown(false,1);
if( y == document.selection.GetActivePointY(eePosLogical) ) {
	document.selection.EndOfLine(false,eeLineLogical);
}

LineUp.jsee

y = document.selection.GetActivePointY(eePosLogical);
document.selection.LineUp(false,1);
if( y == document.selection.GetActivePointY(eePosLogical) ) {
	document.selection.StartOfLine(false,eeLineLogical);
}

よろしくお願い申し上げます。