Tõivo Leedjärv
Tõivo Leedjärv
If you do not want to sync resource forks and FinderInfo then you can add `-rsrc=false` command line argument. This will solve the specific issue you are seeing in https://github.com/bcpierce00/unison/issues/293#issuecomment-692812640...
The source of the issue is here: https://github.com/bcpierce00/unison/blob/master/src/update.ml#L1412-L1417 This check only considers OS but not fs type. I don't see how anything could be improved here unless Unison would know...
> What I meant is that if deep down the code runs into "can't map filename to a string which is acceptable to the fs it is being stored on",...
I don't know if this is really an issue that the current proposal does not allow different prefixes and suffixes on different hosts, but this is something I wanted to...
I can propose some options that, while not complete fixes, should provide a reasonable workaround. These options are here just for discussion to find a reasonable solution, but I can...
The other issue, truncating status during update detection is very simple and very difficult at the same time. It is very simple because there actually is a single constant that...
I don't think line wrapping works for status updates because it's the same line that's constantly being written over. Haven't tested it, though.
> Increase the max root name display length to 35 That would be the easiest thing to do. The reason why current limit is 12 is because it's aligned with...
@skjardenCode don't know for sure, but seems like it. But why don't you do a simple test? Something like this (adapt to your shell) ``` sh mkdir test{1,2} touch test1/a.txt...
Some thoughts: * Interrupting unison at any time is _supposed_ to be safe, even if it comes with some cruft left behind and other potential inconveniences that @bruceg mentioned. But...