ksprojects / protobuf-jetbrains-plugin

Protobuf Support for JetBrains IDEs
https://plugins.jetbrains.com/plugin/8277
Apache License 2.0
259 stars 45 forks source link

Missing field name does not show an error marker when using proto3 syntax. #131

Closed BalzGuenat closed 4 years ago

BalzGuenat commented 5 years ago

Describe the bug While using proto3 syntax, there is no error marker if the field name is missing.

To Reproduce Write a message type like so:

syntax = "proto3";
message Foo {
  string = 1;
}

Expected behavior An error marker (e.g. red squiggly underline) should be shown at the incomplete field declaration, just like it does with proto2 syntax.

Screenshots https://i.imgur.com/Bounohi.png

Plugin:

kshchepanovskyi commented 4 years ago

This issue is closed as plugin is not supported anymore. Please switch to https://github.com/jvolkman/intellij-protobuf-editor.