diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-06 09:04:32 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-09-06 09:04:32 +0000 |
commit | ead1fff7dbd518efdd7799030ea773cd0d5eee31 (patch) | |
tree | 86432efcfb0d5b12b22cdbefd54f64797572fbed /Completion/User | |
parent | e2409e0649ac61e938624ba349988f58f873bf54 (diff) | |
download | zsh-ead1fff7dbd518efdd7799030ea773cd0d5eee31.tar.gz zsh-ead1fff7dbd518efdd7799030ea773cd0d5eee31.tar.xz zsh-ead1fff7dbd518efdd7799030ea773cd0d5eee31.zip |
zsh-workers/7650
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_urls | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Completion/User/_urls b/Completion/User/_urls index db32aea82..ef10bb37d 100644 --- a/Completion/User/_urls +++ b/Completion/User/_urls @@ -6,7 +6,7 @@ # # Configuration key used: # -# urls_dir +# urls_path # The path to a directory containing a URL database, such as: # # % cd ~/.zsh/urls @@ -32,8 +32,8 @@ if [[ "$1" = -f ]]; then _files "$@" && return fi -if [[ -z "$compconfig[urls_dir]" ]]; then - compconfig[urls_dir]=${ZDOTDIR:-$HOME}/.zsh/urls +if [[ -z "$compconfig[urls_path]" ]]; then + compconfig[urls_path]=${ZDOTDIR:-$HOME}/.zsh/urls fi ipre="$IPREFIX" @@ -52,12 +52,12 @@ case "$scheme" in esac if [[ "$scheme" = bookmark && - -f "$compconfig[urls_dir]/$scheme/$PREFIX$SUFFIX" && - -s "$compconfig[urls_dir]/$scheme/$PREFIX$SUFFIX" ]]; then - compadd "$@" -QU -- "$ipre$(<"$compconfig[urls_dir]/$scheme/$PREFIX$SUFFIX")" + -f "$compconfig[urls_path]/$scheme/$PREFIX$SUFFIX" && + -s "$compconfig[urls_path]/$scheme/$PREFIX$SUFFIX" ]]; then + compadd "$@" -QU -- "$ipre$(<"$compconfig[urls_path]/$scheme/$PREFIX$SUFFIX")" else - dirs=($compconfig[urls_dir]/$scheme/$PREFIX*$SUFFIX(/:t)) - files=($compconfig[urls_dir]/$scheme/$PREFIX*$SUFFIX(.:t)) + dirs=($compconfig[urls_path]/$scheme/$PREFIX*$SUFFIX(/:t)) + files=($compconfig[urls_path]/$scheme/$PREFIX*$SUFFIX(.:t)) compset -P '*/' compadd "$@" -Q -S '/' - $dirs if [[ "$scheme" = bookmark ]]; then |