Archimedes Smith

Results 10 comments of Archimedes Smith

AFAIK beancount never supports links / tags on a separate line, or at posting level. The official parser happily accepts your example because it ignores any lines starting with `[;*:#]`...

Sorry, you are right about the first point. I just found the rule that picks up those tags / links [here](https://github.com/beancount/beancount/blob/1d319a81b81f67e86cad7ff01f92a024e0f9a123/beancount/parser/grammar.y#L474), confusingly as part of `posting_or_kv_list` instead of `transaction`.

To clarify, do you have one trailing `\n` or two? Squashing multiple trailing `\n` into one is an intentional decision as `autobean-format` aims to normalize all spacing in the file....

Looking at your attachment, you are happy about multiple trailing `\n` being squashed into two, but not one, the latter being the current behavior of autobean-format. I think it's the...

> There is no blank line left at the end. The one \n you are seeing is at the end of the previous line. So effectively it is removing the...

I think it makes sense to preserve pre-split information. It should be optional behind a flag though, to avoid overwhelming otherwise simple transactions. Ideally I'd like to see transactions before...

> There's been talk of making the pad directive a plugin of its own, but I don't think this has happened yet. Think this has been the case for many...

I think the mapping is configurable in Samba to match rsync's behavior. https://www.samba.org/samba/docs/current/man-html/vfs_streams_xattr.8.html

You can set the prefix to match rsync (as sender & receiver) and drop the suffix. ``` streams_xattr:prefix = user. streams_xattr:store_stream_type = no ``` It also works for your first...