# HG changeset patch # User Oleksandr Gavenko # Date 1426172889 -7200 # Node ID 73748dd9a56318ea63b0b19f6e9b78b9b8b00e49 # Parent 26eaadaeb19a4a24ac951f63e4fc1a203e52035d Fallback to Readline built-in dir completion implementation to handle spaces in path. diff -r 26eaadaeb19a -r 73748dd9a563 .bash_completion --- a/.bash_completion Wed Feb 25 01:17:28 2015 +0200 +++ b/.bash_completion Thu Mar 12 17:08:09 2015 +0200 @@ -59,8 +59,7 @@ local cur cur=${COMP_WORDS[COMP_CWORD]} if [[ -z "${CDPATH:-}" ]] || [[ $cur == ?(.)?(.)/* ]] || [[ $cur == '~'/* ]]; then - COMPREPLY=( $(compgen -d -- "$cur") ) - COMPREPLY=${COMPREPLY[@]/%//} + compopt -o dirnames; COMPREPLY=() return 0 fi local i j k