mkrnr / plover_regenpfeifer

Regenpfeifer support for Plover.
GNU General Public License v3.0
22 stars 0 forks source link

No such file or dictionary: `...\\site-packages\\plover_regenpfeifer\\dictionaries\\r` #4

Closed mkrnr closed 8 months ago

mkrnr commented 8 months ago

The dictionary name is split into its individual letters.

Assumption: this in system.py should be a list instead of a tuple:

DEFAULT_DICTIONARIES = ('regenpfeifer_main.json')
jast commented 8 months ago

('foo') is actually identical to 'foo'. If you want to force it into a tuple, it needs to be ('foo',).

mkrnr commented 8 months ago

Thanks a lot @jast, your suggestion was the way to go. First I wanted to make a list out of it but this needs to be a tuple.

The fix is part of v1.1.1 (and I had to create v1.1.2 because I burned v1.1.1 for some tests a while ago).