Closes #43784 Closes #44375 Closes #21057 This PR updates the Proto extension to include support for two new language servers as well as an updated grammar for better highlighting. Release Notes: - Improved Proto support to work better out of the box.
9 lines
157 B
Rust
9 lines
157 B
Rust
mod buf;
|
|
mod protobuf_language_server;
|
|
mod protols;
|
|
mod util;
|
|
|
|
pub(crate) use buf::*;
|
|
pub(crate) use protobuf_language_server::*;
|
|
pub(crate) use protols::*;
|