带有NERD_Commenter的不理想注释,注释javascript嵌入html文件

问题描述 投票:5回答:1

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

带有vim插件NERD_Commenter的评论

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

我想用下面的样式注释内部的javascript代码:

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

    </script>

如何处理?还是有一个更好的代码注释插件?

html vim comments indentation
1个回答
1
投票

您可以使用tcomment.vim。这就是我所使用的,它支持某些混合语言突出显示(demo)。例如,您可以使用gc<motion>注释文本或使用gcc注释行,它通常会适当地检测语言。

© www.soinside.com 2019 - 2024. All rights reserved.