Kyle Semelka
Kyle Semelka
Related follow-up to this: The Protobuf style guide recommends prepending the enum type name to each enum value name. [Protobuf Style Guide: Enums](https://developers.google.com/protocol-buffers/docs/style#enums) For example: ``` syntax = "proto3"; message...
My proposal for shortening enum value name generation is to add a custom option which does not include the enum type name in the C enum generation. nanopb does this...
Sure, that makes sense, thanks. I’ll leave this issue open until I get around to making a PR for the option and extra syntax check.