From 0956e0339aea01fa309ba590c0b483d5a7d5d4b6 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 3 Apr 2000 11:32:59 +0000 Subject: Handle directory stack entries --- Completion/Core/_path_files | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Completion/Core') 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 -- cgit 1.4.1