blob: e760b3536e7882ad194eb80dd050aa042054dbc6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#compdef ncftp
if [[ -f ~/.ncftp/bookmarks ]]; then
_wanted bookmarks expl bookmark \
compadd - $(awk -F, 'NR > 2 { print $1 }' ~/.ncftp/bookmarks) && return 0
fi
_hosts
|