BBedit 中标签旁边的快捷注释

BBedit 中标签旁边的快捷注释

alt在 Sublime Text 2 中,我可以使用快捷键++在标签旁边创建注释,cmd结果/如下:

<a href=""></a><!--  -->

我怎样才能在 BBedit 中将注释快捷键放在标签旁边?这不可能吗?我看到cmd+确实/有效。

答案1

这是一个稍微粗糙的 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 键将跳转到注释的中间( )<##>,或者当然,您可以忽略它并删除注释 :)

相关内容