Comment.nvim
Comment.nvim copied to clipboard
Support for JSON5 filetype
Support out of the box for json5 filetype.
JSON5 allows comments just like jsonc. This can be done from each individual configuration by adding:
local ft = require("Comment.ft")
ft.json5 = {'//%s', '/*%s*/'}
But if this can be integrated in the main plugin it would be a nice addition.