Closed gitschneider closed 4 years ago
Khard supports editor command line args since version 0.15.0. Please either upgrade or remove the args after the editor command in your config file.
Oh, the config file says version strictly greater v0.14... And I had khard installed from ubuntu 19.10, which had v0.14. As pip3 show khard
showed me the same version I assumed it's the latest one and did not check any further. But now I have 0.15 installed, everything works fine.
So: sorry, completely my own faul. Thanks!
When using the default (mostly) khard will exit with a traceback on any action:
After checking the traceback it was clear that the
editor
config is the culprit. The entry in~/.config/khard/khard.conf
iseditor = vim, -i, NONE
, and this gets converted to['vim', '-i', 'NONE']
in config.py:74, butexpanduser
does not like the list.When using just
vim
or leaving out the entry everything works as expected.My config: