From bc3a53e22effdb7516790bd73e45364c42472c8f Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sat, 27 Dec 2025 15:21:19 -0600 Subject: [PATCH] Adding BASH_COMPLETIONS variable to xonsh rc.py. --- .config/xonsh/rc.d/rc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/xonsh/rc.d/rc.py b/.config/xonsh/rc.d/rc.py index 8e4ae55..c2f1ba6 100644 --- a/.config/xonsh/rc.d/rc.py +++ b/.config/xonsh/rc.d/rc.py @@ -11,12 +11,14 @@ from xonsh.xontribs import xontribs_load xenv = __xonsh__.env - ### ADDING DIRS TO PATH ### for d in ["~/.local/bin", "~/Applications"]: xenv["PATH"].append(Path(d).expanduser()) ### BASH COMPLETIONS ### +# Xonsh supports using existing Bash completion files. +# You must have the bash-completion package installed on your system. +# Then add the path to the bash completion file to the variable below. xenv['BASH_COMPLETIONS']='/usr/share/bash-completion/bash_completion' ### XONSH THEME ###