Syntax CoffeeScript中的无缓冲多行注释?

Syntax CoffeeScript中的无缓冲多行注释?,syntax,comments,coffeescript,multiline,unbuffered,Syntax,Comments,Coffeescript,Multiline,Unbuffered,如果我错了,请纠正我,在CoffeeScript中拥有无缓冲(不输出到.js)注释的唯一方法是 # This is the only way to mute this single-line comments ###缓冲多行的注释 ### This will be outputted to the .js For things like copyright notices. ### 但是不可能有无缓冲的多行评论 # This is the only way to mute # mul

如果我错了,请纠正我,在CoffeeScript中拥有无缓冲(不输出到.js)注释的唯一方法是

# This is the only way to mute this single-line comments
###
缓冲多行的注释

### This will be outputted to the .js
    For things like copyright notices.
###
但是不可能有无缓冲的多行评论

# This is the only way to mute
# multiple-lines

谢谢。

正确。但这并不像看上去那么困难,因为您的文本编辑器可能为注释/取消注释行提供了键盘快捷键。例如,在TextMate with jashkenas的bundle中,您只需选择要注释的行,然后点击
Cmd+/
#
放在每行前面。同样的快捷方式也可以以这种方式取消评论行。

感谢您的回答,缺少多行无缓冲评论真糟糕。我也不认为
####
#
一样有效,虽然我可能是错的,但
##
有时会给我带来缩进问题或其他问题。。。