嵌入在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>
如何处理?还是有一个更好的代码注释插件?
您可以使用tcomment.vim。这就是我所使用的,它支持某些混合语言突出显示(demo)。例如,您可以使用gc<motion>
注释文本或使用gcc
注释行,它通常会适当地检测语言。