ron.vim
ron.vim copied to clipboard
RON syntax highlighting for Vim
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:  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"# )