diff options
-rw-r--r-- | Completion/Core/_path_files | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Completion/Core/_path_files b/Completion/Core/_path_files index ac6fcf604..2c5362e17 100644 --- a/Completion/Core/_path_files +++ b/Completion/Core/_path_files @@ -170,6 +170,23 @@ if [[ "$pre[1]" = \~ ]]; then realpath="${userdirs[$linepath]%/}/" elif (( $+nameddirs[$linepath] )); then realpath="${nameddirs[$linepath]%/}/" + elif [[ "$linepath" = [-+][0-9]## ]]; then + if [[ "$linepath" = -* ]]; then + tmp=$(( $#dirstack $linepath )) + else + tmp=$linepath[2,-1] + fi + [[ -o pushdminus ]] && tmp=$(( $#dirstack - $tmp )) + if (( ! tmp )); then + realpath=$PWD/ + elif [[ tmp -le $#dirstack ]]; then + realpath=$dirstack[tmp]/ + else + _message 'not directory stack entries' + return 1 + fi + elif [[ "$linepath" = [-+] ]]; then + realpath=${~:-\~$linepath}/ else _message "unknown user \`$linepath'" return 1 |