NERD_Commenter的不理想评论,评论javascript嵌入html文件

时间:2012-03-30 09:47:21

标签: html vim comments indentation

嵌入在html中的一些javascript代码如下:

评论了vim插件NERD_Commenter

<body>
    <script language="javascript">
        <!--alert("hello word");-->
        <!--alert("hello word");-->
        <!--alert("hello word");-->
        <!--alert("hello word");-->
    </script>
</body>

我希望内部javscript代码在下面的样式中注释:

    <script language="javascript">
        //alert("hello word");
        //alert("hello word");
        //alert("hello word");
        //alert("hello word");

    </script>

如何处理?或者是否有更好的代码评论插件?

1 个答案:

答案 0 :(得分:1)

您可以使用tcomment.vim。这就是我使用的,它支持一些混合语言突出显示(demo)。例如,您可以使用gc<motion>对文字进行评论,或使用gcc对某一行进行评论,它通常会恰当地检测该语言。