William Ting
William Ting
Hey thanks for the detailed bug report! Unfortunately I don't have access to a Windows machine. Can you update [these Windows tests](https://github.com/wting/autojump/blob/master/tests/unit/autojump_match_test.py#L55) such that they reproduce the error you have?...
You can mock it out for tests like so: ``` python In [1]: import os, mock In [2]: os.sep Out[2]: '/' In [3]: with mock.patch.object(os, 'sep', '\\'): ...: print(os.sep) ...:...
tcsh is not supported. The shell wrappers requires a `cd` hook and a couple of functions (look at `autojump.bash` as an example). I'd be happy to merge a PR if...
This is probably a distribution packaging problem and not related to Python 3.10 or autojump. Specifically, `autojump_argparse` is a vendorized Python stdlib to support Python 2.6 and thus doesn't depend...
Sorry for the late response but I have a rough idea of what's happening and how to fix it. On every directory change autojump locks the data file and updates...
This is implemented in v22.5.2 here: https://github.com/wting/autojump/commit/bc4ea615462adb15ce53de94a09cec30bcc5dc0a For now please install and test from source and report back if data is still being lost.
Oops, I reverted https://github.com/wting/autojump/commit/bc4ea615462adb15ce53de94a09cec30bcc5dc0a and merged your changes into https://github.com/wting/autojump/commit/8fffbad95ac5626f4d9688276ba8a36808c433e3.
There was a race condition that occasionally wiped the database entry that was fixed in v22.5.3. @minjang, @kaihendry: Can y'all run `autojump -v` and share the version number listed? If...
I'm not sure who maintains the Debian package for autojump these days, but it's possibly that they only build off stable tags. While master branch has been on v22.5.3 for...
I'd be more than happy to accept pull requests. However due to lack of time and access to a Windows I can't add support myself.