Fixed
Status Update
Comments
aa...@google.com <aa...@google.com> #2
Quoting does work but requires a space between the key and the value:
message: "741ms so far"
message: '741ms so far'
I'm going to try to fix but it might not be trivial due to how the Lexer is written.
One option is to change message:"foo bar"
to message: "foo bar"
before parsing but I'll try a proper fix as well.
aa...@google.com <aa...@google.com> #3
I believe I have a proper fix for this.
Description
Currently, the user needs to escape spaces (e.g.
message:741ms\ so\ far
). This isn't really intuitive. Some possible ideas: