Pádraig Brady

Results 211 comments of Pádraig Brady

You're in an is0-8859-1 locale. It's unusual to not be in a UTF8 locale these days. A probable workaround would be to set a UTF8 locale first like: ``` git...

The latest version is now more locale agnostic. Could you try it out? I've not marked this bug as fixed though as I wasn't able to recreate your output truncation...

coreutils 8.21 (Feb 2013) actually. A more compat option is `df -P | awk '{print $6}'`

tl;dr we should probably restrict underscore handling to less cases. At least we should disallow trailing underscores (as is the case in this bug). That would match most underscore allowing...

I also see some inconsistencies between the antlr (interpolation) and basic loader. pr #995 does not address that, but at least documents it.

This particular character is unicode nextline ``` >>> "\u0085" == "\x85" True ``` As an aside, this is a character in unicode to support the mapping to/from EBCDIC, which had...

Well I do now have access to macOS, but this is low pri TBH. I still don't know if macOS provides the required info

Hit this on a very parallel build. Adding parser.h to BUILT_SOURCES in src/Makefile.am seems to avoid the issue

workaround is concise, but still inefficient, non atomic. Still intend to implement support for this

@fekir one can now do: ``` crudini --set config_file section parameter1 value \ --set config_file section parameter2 value \ --del config_file section parameter3 ```