You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Add this line to the CoffeeScript section of languages.json: "blockComment": ["###", "###"],
Open a .coffee file with these contents:
foo = 42
bar = true
baz = "hello"
number = -42 if bar
square = (x) -> x * x
Select the middle 3 lines and Toggle Block Comment
Immediately Toggle Block Comment again
Undo back to clean state
Repeat step 3
Select all the lines, including the ### lines, then Toggle Block Comment again
Undo back to a clean state
Select just one line (without including newlines) and Toggle Block Comment
Either (a) immediately toggle again, or (b) re-select the whole line to include delimiters and then toggle
Result:
4 - closing delimiter isn't removed
7 - comment is wrapped in a second pair of ### lines
10 - one "#" is removed from the opening ###, but nothing else changes