Brazil
Vegan Linux nerd. Tabs over spaces. Inverted Y-axis, please.
Ticket created by ~gbrlsnchs on ~gbrlsnchs/kana
Prevent empty lines from being removed when content is piped.
Comment by ~gbrlsnchs on ~gbrlsnchs/kana
Implemented in latest version (v0.3.0)!
REPORTED
RESOLVED IMPLEMENTEDComment by ~gbrlsnchs on ~gbrlsnchs/kana
Fixed in latest version (v0.3.0)!
REPORTED
RESOLVED FIXEDComment by ~gbrlsnchs on ~gbrlsnchs/kana
Implemented in latest version (v0.3.0)!
REPORTED
RESOLVED IMPLEMENTEDComment by ~gbrlsnchs on ~andreafeletto/zig-scfg
Thank you a lot for working on this! Cheers! :-)
On Wed, Feb 1, 2023, at 18:18, ~andreafeletto wrote:
Thanks. I had only looked at the ABNF grammar without paying too much attention to the initial description.
-- View on the web: https://todo.sr.ht/~andreafeletto/zig-scfg/2#event-224054
Ticket created by ~gbrlsnchs on ~andreafeletto/zig-scfg
As per the spec, when a line starts with
#
, it should be ignored (since it's a comment).
Comment by ~gbrlsnchs on ~andreafeletto/zig-scfg
I've made an attempt on fixing it with https://lists.sr.ht/~andreafeletto/public-inbox/patches/38411. I hope that helps! :-)
On Tue, Jan 24, 2023, at 09:54, ~andreafeletto wrote:
Will fix it this night. Thanks for the report.
-- View on the web: https://todo.sr.ht/~andreafeletto/zig-scfg/1#event-222605
Comment by ~gbrlsnchs on ~andreafeletto/zig-scfg
There's an extra single quote in the successful example, but the behavior still applies:
foo bar { baz "?" }
Ticket created by ~gbrlsnchs on ~andreafeletto/zig-scfg
This will fail:
foo bar { baz ? }
While this will succeed:
foo bar { baz "?'" }
According to the spec, the only difference between
atom
anddquoted-word
is that the latter also accepts single quotes, curly braces and whitespace as value.