コメントいくつかのjavascriptコード:非理想コメント、以下のようにHTMLに埋め込まれたJavaScript埋め込みhtmlファイル
私はコメントし、内側javscriptコードを希望vimのプラグインNERD_Commenter
<body>
<script language="javascript">
<!--alert("hello word");-->
<!--alert("hello word");-->
<!--alert("hello word");-->
<!--alert("hello word");-->
</script>
</body>
とコメントスタイル:
<script language="javascript">
//alert("hello word");
//alert("hello word");
//alert("hello word");
//alert("hello word");
</script>
どのように対処するには?または、コードコメントのためのより良いプラグインがありますか?
私は混合言語をサポートするコメントプラグインについて知らない。私はここに問題を提出するhttps://github.com/scrooloose/nerdcommenter/issues混合言語のコメントをサポートすると便利です。別の例はXSLTです。 XSLTでのコメントはですが、XSLTで使用されるXPathステートメント内のコメントはこのようになります(::)。 – darcyparker