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