次の小なりへ
むずがゆいところに手が届くシリーズ
次の小なりへ移動するマクロです
HTMLのキーマップの「Alt+→」とかに割り当てるとイイカモ。
var target;
document.selection.CharRight(true,1);
target = document.selection.Text;
document.selection.CharLeft(false,1);
if(target=="<"){
document.selection.CharRight(false,1);
document.selection.Find( "<", eeFindNext );
document.HighlightFind = false;
document.selection.CharLeft(false,1);
}else{
document.selection.Find( "<", eeFindNext );
document.HighlightFind = false;
document.selection.CharLeft(false,1);
}
