Вот немного сырой Applescript, чтобы делать то, что вы хотите
tell application "BBEdit"
find ">" searching in text 1 of text document 1 options {search mode:grep, starting at top:false, wrap around:false, backwards:false, case sensitive:false, match words:false, extend selection:false} with selecting match
select insertion point after selection
set insertionP to selection
set text of insertionP to "<!-- <##> -->" & (text of insertionP)
select insertion point before selection
end tell
В конце он поместит ваш курсор в конец вашего тега. Нажав TAB, вы перейдете к середине ваших комментариев (<##>
), или, конечно, вы можете проигнорировать это и удалить комментарий :)