dvdkruk / protobuf-dt

Automatically exported from code.google.com/p/protobuf-dt
0 stars 0 forks source link

Broken completion when typing in proto editor #72

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
r336

Original comment by alr...@google.com on 20 Jun 2011 at 3:07