design: hopefully work around CD wonk

This commit is contained in:
Kate 2025-05-23 14:03:14 +02:00
parent 5873d47193
commit 85953236c2

View file

@ -28,3 +28,9 @@ $XDG_DATA_DIRS = [
"/usr/local/share", "/usr/local/share",
$HOME + "/.nix-profile/share" $HOME + "/.nix-profile/share"
] ]
# Make sure cd isn't run as a subprocess.
# Gods help us that this is necessary.
import xonsh.tools
aliases['cd'] = xonsh.tools.unthreadable(xonsh.dirstack.cd)