mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 16:50:58 +01:00
72 lines
2.2 KiB
Text
72 lines
2.2 KiB
Text
#autoload
|
|
|
|
# Usage: _urls [-f]
|
|
# Options:
|
|
# -f : complete files.
|
|
#
|
|
# Configuration key used:
|
|
#
|
|
# urls_path
|
|
# The path to a directory containing a URL database, such as:
|
|
#
|
|
# % cd ~/.zsh/urls
|
|
# % find . -ls
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:46 .
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:48 ./http
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:52 ./http/www.zsh.org
|
|
# ... drwxr-xr-x ... 512 Sep 3 03:01 ./http/www.zsh.org/mla
|
|
# ... drwxr-xr-x ... 512 Sep 3 03:01 ./http/www.zsh.org/mla/workers
|
|
# ... drwxr-xr-x ... 512 Sep 3 03:01 ./http/www.zsh.org/mla/workers/1999
|
|
# ... -rw-r--r-- ... 0 Sep 3 03:01 ./http/www.zsh.org/mla/workers/1999/index.html
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:48 ./http/sunsite.auc.dk
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:48 ./http/sunsite.auc.dk/zsh
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:47 ./bookmark
|
|
# ... drwxr-xr-x ... 512 Sep 3 02:48 ./bookmark/zsh
|
|
# ... -rw-r--r-- ... 27 Sep 3 02:47 ./bookmark/zsh/home
|
|
# ... -rw-r--r-- ... 20 Sep 3 02:48 ./bookmark/zsh/meta
|
|
# % cat bookmark/zsh/home
|
|
# http://sunsite.auc.dk/zsh/
|
|
# % cat bookmark/zsh/meta
|
|
# http://www.zsh.org/
|
|
|
|
local ipre scheme dirs files
|
|
|
|
if [[ "$1" = -f ]]; then
|
|
shift
|
|
_files "$@" && return
|
|
fi
|
|
|
|
if [[ -z "$compconfig[urls_path]" ]]; then
|
|
compconfig[urls_path]=${ZDOTDIR:-$HOME}/.zsh/urls
|
|
fi
|
|
|
|
ipre="$IPREFIX"
|
|
|
|
if [[ -prefix [-+.a-z0-9]#: ]]; then
|
|
scheme="${PREFIX%%:*}"
|
|
compset -P "[-+.a-z0-9]#:"
|
|
else
|
|
compadd "$@" -S '' http:// ftp:// bookmark:
|
|
return
|
|
fi
|
|
|
|
case "$scheme" in
|
|
http) compset -P // || { compadd "$@" -S '' //; return };;
|
|
ftp) compset -P // || { compadd "$@" -S '' //; return };;
|
|
esac
|
|
|
|
if [[ "$scheme" = bookmark &&
|
|
-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_path]/$scheme/$PREFIX*$SUFFIX(/:t))
|
|
files=($compconfig[urls_path]/$scheme/$PREFIX*$SUFFIX(.:t))
|
|
compset -P '*/'
|
|
compadd "$@" -Q -S '/' - $dirs
|
|
if [[ "$scheme" = bookmark ]]; then
|
|
compadd "$@" -QS '' - $files
|
|
else
|
|
compadd "$@" -Q - $files
|
|
fi
|
|
fi
|