1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00

Add completion for lftp

This commit is contained in:
Chmouel Boudjnah 2001-03-11 23:51:29 +00:00
parent e264c1bee1
commit 0f7eb6ce3d
2 changed files with 9 additions and 0 deletions

@ -1,3 +1,7 @@
2001-03-12 Chmouel Boudjnah <chmouel@mandrakesoft.com>
* 13601: Completion/User/_lftp: Add completion for lftp
2001-03-11 Oliver Kiddle <opk@zsh.org>
* 13600: Completion/Base/_subscript, Completion/Core/_files,

5
Completion/User/_lftp Normal file

@ -0,0 +1,5 @@
#compdef lftp
if [[ -f ~/.lftp/bookmarks ]]; then
_wanted bookmarks expl bookmark \
compadd - $(cut -f1 ~/.lftp/bookmarks) && return 0
fi