ron.vim icon indicating copy to clipboard operation
ron.vim copied to clipboard

RON syntax highlighting for Vim

Results 3 ron.vim issues
Sort by recently updated
recently updated
newest added

I tried to install it with Neovim and Packer. But I don't have any syntax highlighting on `*.ron` files.

Nested block comments break the highlighting: ![grafik](https://user-images.githubusercontent.com/11978847/224566990-5ba36599-ae46-4fa7-943b-344a02753cf8.png) I ran ```rs let _: ron::Value = ron::from_str(r#" Something( /* /* test */ */ a: b ) "#).unwrap(); ``` To verify, ron supports...

It looks like maybe this doesn't support multiline string literals? ```ron Struct( value: r#" a multiline string"# )