Results 201 comments of Jan Holthuis

Thanks, this does indeed work: ```rust use binrw::{binrw, BinRead}; #[binrw] #[derive(Debug)] #[brw(little)] struct Data { version: u16, #[br(temp)] #[bw(calc = items.len().try_into().unwrap())] num_items: u32, #[br(args{ count: num_items.try_into().unwrap(), inner: (version,) })] items:...

Btw, I just saw that this workaround actually documented in 38f731b2de1df7bd5132d42c43b5ef021409450f.

Looks like an additional check is needed, in case that source and destination file are the same.

The culprit is this code snippet: https://github.com/Holzhaus/beets-extrafiles/blob/master/beetsplug/extrafiles.py#L163-L165 I'll see if I can come up with something better (possibly using the musicbrainz release id?) when I have some spare time. Feel...

Sorry, the documentation wasn't really clear about this. You need to specify the pattern like this: ```yaml paths: log: '$albumpath/$filename' cue: '$albumpath/$filename' pdf: '$albumpath/$filename' ``` I just released a new...

I can't help you unless you run the import in verbose mode (`beet -vv import ...`) and post the output here.

> Thanks for the PR I'll merge it after some clean up. Ah cool, I didn't expect it was already good enough to be merged. IMHO it's a bit confusing...

The same happens if you're on WSL (Windows 10) and use a some path in `/mnt/c/...` as docset directory.

Possibly related: Issuing commands or pressing the return key too fast, the cursor will be below the currently viewable area. If I just press the return key multiple times in...