In a proto file, I type this:
message SomeMessage {
required string name
with the caret at the end of this line, I type Ctrl+Space, Enter. I now have:
message SomeMessage {
required string name=
Minor Bug #1: We should insert a space after name and before the equals sign.
I type Ctrl+Space, Enter again. I now have:
message SomeMessage {
required string name=1
Minor Bug #2: Space would be nice here too.
I type a semicolon. I now have:
message Funky {
required string name=1 = 1;
}
Main Bug: The editor inserted " = 1;" for me, even though the message number
was already present. It should have simply inserted a semicolon.
Original issue reported on code.google.com by alr...@google.com on 20 Jun 2011 at 1:24
Original issue reported on code.google.com by
alr...@google.com
on 20 Jun 2011 at 1:24