protobuf-tmbundle
protobuf-tmbundle copied to clipboard
Textmate Bundle for Google's protocol buffers
Results
1
protobuf-tmbundle issues
Sort by
recently updated
recently updated
newest added
https://developers.google.com/protocol-buffers/docs/reference/proto3-spec#service_definition ## 1 A whitespace between rpc and rpcName is not necessary. ```proto service SearchService { rpc Search (SearchRequest) returns (SearchResponse); } ``` Below case should be highlighted properly. ```...