We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b1bbc commit 5a96634Copy full SHA for 5a96634
test/comment_test.js
@@ -115,4 +115,9 @@ namespace = "comment_";
115
cm.setCursor(1, 0)
116
cm.execCommand("toggleComment")
117
}, "<!-- foo\nbar -->", "<!-- foo\nbar -->")
118
+
119
+ test("toggleWithMultipleInnerComments", "javascript", function(cm) {
120
+ cm.execCommand("selectAll")
121
+ cm.execCommand("toggleComment")
122
+ }, "/* foo */\na\n/* bar */\nb", "// /* foo */\n// a\n// /* bar */\n// b")
123
})();
0 commit comments