嵌入在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>
如何处理?或者是否有更好的代码评论插件?
答案 0 :(得分:1)
您可以使用tcomment.vim。这就是我使用的,它支持一些混合语言突出显示(demo)。例如,您可以使用gc<motion>
对文字进行评论,或使用gcc
对某一行进行评论,它通常会恰当地检测该语言。