`]]--` or `--]]` don't make sense, because: - `]]--`: comment will end with `]]` and `--` will be beginning of other (single) comment, in C/C++ it would be:: ```c /* Block comment */// Single comment ``` Such "coding style" looks like crap...
- `--]]`: comment will end with `]]` and `--` will be just a part of this block comment: maybe it looks more beautiful, I am not sure, but it doesn't make any practical sense. Maybe just replace on correct option ```ini comment_close=]] ``` ? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/2566#issuecomment-699836168
