mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
12 lines
280 B
Plaintext
12 lines
280 B
Plaintext
#compdef ncftp lftp
|
|
|
|
local expl bookmarks=$HOME/.$service/bookmarks
|
|
|
|
if [[ -f $bookmarks ]]; then
|
|
bookmarks=(${"${(f)$(<$bookmarks)}"%%[[:space:],]*})
|
|
[[ $service == ncftp ]] && shift 2 bookmarks
|
|
_wanted bookmarks expl bookmark compadd -a bookmarks && return 0
|
|
fi
|
|
|
|
_hosts
|