In filetypes.python we have:
``` # single comment char, like # in this file comment_single=#\s # multiline comments comment_open=""" comment_close=""" ```
But none of these multi-line examples results in a comment or even heredoc, its just a string.
For some reason python syntax highlighting is ignoring comment_open/close and treating block comments as multiline comments:

So how do we get docstrings to show up as multiline comments?