CoffeeScript中的无缓冲多行注释?

时间:2011-10-16 21:56:36

标签: 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
# multiple-lines

感谢。

1 个答案:

答案 0 :(得分:6)

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