~gbrlsnchs

Brazil

https://gsr.dev

Vegan Linux nerd. Tabs over spaces. Inverted Y-axis, please.

Trackers

~gbrlsnchs/kana

Last active 1 year, 8 months ago

~gbrlsnchs/ebuilds

Last active 1 year, 10 months ago

~gbrlsnchs/kana-guru

Last active 1 year, 11 months ago

~gbrlsnchs/park

Last active 2 years ago

#4 Empty lines are deleted 1 year, 8 months ago

bug added by ~gbrlsnchs on ~gbrlsnchs/kana

#4 Empty lines are deleted 1 year, 8 months ago

Ticket created by ~gbrlsnchs on ~gbrlsnchs/kana

Prevent empty lines from being removed when content is piped.

#3 Add punctuation 1 year, 10 months ago

Comment by ~gbrlsnchs on ~gbrlsnchs/kana

Implemented in latest version (v0.3.0)!

REPORTED RESOLVED IMPLEMENTED

#2 Missing Sokuon list 1 year, 10 months ago

Comment by ~gbrlsnchs on ~gbrlsnchs/kana

Fixed in latest version (v0.3.0)!

REPORTED RESOLVED FIXED

#1 Allow toggling raw mode 1 year, 10 months ago

Comment by ~gbrlsnchs on ~gbrlsnchs/kana

Implemented in latest version (v0.3.0)!

REPORTED RESOLVED IMPLEMENTED

#2 Add support for comments 1 year, 11 months ago

Comment 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

#2 Add support for comments 1 year, 11 months ago

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).

#1 Some atoms only work when quoted 1 year, 11 months ago

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

#1 Some atoms only work when quoted 1 year, 11 months ago

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 "?"
}

#1 Some atoms only work when quoted 1 year, 11 months ago

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 and dquoted-word is that the latter also accepts single quotes, curly braces and whitespace as value.