1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Typo in CDPATH variable expansion of _with_project

This commit is contained in:
Holger Just 2025-04-08 14:22:15 +02:00
parent 6669010733
commit 02fe70ba12
No known key found for this signature in database

View File

@ -268,7 +268,7 @@ mc() {
# bash completion with with_project and functions using it
_with_project() {
local CDPATH; CDPATH="$(project_dirs):{$CDPATH}"
local CDPATH; CDPATH="$(project_dirs):${CDPATH}"
_cd
}