# HG changeset patch # User Oleksandr Gavenko # Date 1614017751 -7200 # Node ID 27754771cbb65f9d8e3366e7fe53d75c0a1aab4d # Parent c4a808f66996015a60dba64d786144f65231e693 Fixed handling of spaces in path for completion for Bash command "cd". diff -r c4a808f66996 -r 27754771cbb6 .bash_completion --- a/.bash_completion Thu Jan 14 12:56:41 2021 +0200 +++ b/.bash_completion Mon Feb 22 20:15:51 2021 +0200 @@ -59,6 +59,7 @@ _mycd() { local cur + local IFS=$'\n' cur=${COMP_WORDS[COMP_CWORD]} if [[ -z "${CDPATH:-}" ]] || [[ $cur == ?(.)?(.)/* ]] || [[ $cur == '~'/* ]]; then compopt -o dirnames; COMPREPLY=()