mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-17 12:41:14 +02:00
Initial revision
This commit is contained in:
parent
3233203e79
commit
1bc59a0873
2 changed files with 174 additions and 0 deletions
109
Completion/User/_lynx
Normal file
109
Completion/User/_lynx
Normal file
|
@ -0,0 +1,109 @@
|
|||
#compdef lynx
|
||||
|
||||
_lynx () {
|
||||
_arguments \
|
||||
'-accept_all_cookies' \
|
||||
'-anonymous' \
|
||||
'-assume_charset=:MIMENAME:' \
|
||||
'-assume_local_charset=:MIMENAME:' \
|
||||
'-assume_unrec_charset=:MIMENAME:' \
|
||||
'-auth=:ID\:PW:' \
|
||||
'-base' \
|
||||
'-blink' \
|
||||
'-book' \
|
||||
'-buried_news' \
|
||||
'-cache=:NUMBER:' \
|
||||
'-case' \
|
||||
'-cfg=:FILENAME:_files' \
|
||||
'-child' \
|
||||
'-color' \
|
||||
'-cookies' \
|
||||
'-core' \
|
||||
'-crawl' \
|
||||
'-display=:DISPLAY:_x_display' \
|
||||
'-dump' \
|
||||
'-editor=:EDITOR:_files' \
|
||||
'-emacskeys' \
|
||||
'-enable_scrollback' \
|
||||
'-error_file=:FILENAME:_files' \
|
||||
'-fileversions' \
|
||||
'-force_html' \
|
||||
'-force_secure' \
|
||||
'-from' \
|
||||
'-ftp' \
|
||||
'-get_data' \
|
||||
'-head' \
|
||||
'-help' \
|
||||
'-historical' \
|
||||
'-homepage=:URL: _urls -f' \
|
||||
'-image_links' \
|
||||
'-ismap' \
|
||||
'-index=:URL: _urls -f' \
|
||||
'-link=:NUMBER:' \
|
||||
'-localhost' \
|
||||
'-locexec' \
|
||||
'-mime_header' \
|
||||
'-minimal' \
|
||||
'-newschunksize=:NUMBER:' \
|
||||
'-newsmaxchunk=:NUMBER:' \
|
||||
'-nobrowse' \
|
||||
'-nocc' \
|
||||
'-nocolor' \
|
||||
'-noexec' \
|
||||
'-nofilereferer' \
|
||||
'-nolist' \
|
||||
'-nolog' \
|
||||
'-nonrestarting_sigwinch' \
|
||||
'-nopause' \
|
||||
'-noprint' \
|
||||
'-noredir' \
|
||||
'-noreferer' \
|
||||
'-nosocks' \
|
||||
'-nostatus' \
|
||||
'-number_links' \
|
||||
'-partial' \
|
||||
'-pauth=:ID\:PW:' \
|
||||
'-popup' \
|
||||
'-post_data' \
|
||||
'-preparsed' \
|
||||
'-print' \
|
||||
'-pseudo_inlines' \
|
||||
'-raw' \
|
||||
'-realm' \
|
||||
'-reload' \
|
||||
'-restrictions=:options:_lynx_restrictions' \
|
||||
'-resubmit_posts' \
|
||||
'-rlogin' \
|
||||
'-selective' \
|
||||
'-show_cursor' \
|
||||
'-soft_dquotes' \
|
||||
'-source' \
|
||||
'-startfile_ok' \
|
||||
'-tagsoup' \
|
||||
'-telnet' \
|
||||
'-term=:TERM:' \
|
||||
'-tlog' \
|
||||
'-trace' \
|
||||
'-traversal' \
|
||||
'-underscore' \
|
||||
'-useragent=:NAME:' \
|
||||
'-use_mouse' \
|
||||
'-validate' \
|
||||
'-verbose' \
|
||||
'-version' \
|
||||
'-vikeys' \
|
||||
'-width=:NUMBER:' \
|
||||
':url: _urls -f'
|
||||
}
|
||||
|
||||
_lynx_restrictions () {
|
||||
compset -P '*,'
|
||||
compadd -qS, \
|
||||
all bookmark bookmark_exec change_exec_perms default dired_support \
|
||||
disk_save dotfiles download editor exec exec_frozen externals file_url \
|
||||
goto inside_ftp inside_news inside_rlogin inside_telnet jump mail \
|
||||
multibook news_post options_save outside_ftp outside_news outside_rlogin \
|
||||
outside_telnet print shell suspend telnet_port useragent
|
||||
}
|
||||
|
||||
_lynx "$@"
|
65
Completion/User/_urls
Normal file
65
Completion/User/_urls
Normal file
|
@ -0,0 +1,65 @@
|
|||
#autoload
|
||||
|
||||
# Usage: _urls [-f]
|
||||
# Options:
|
||||
# -f : complete files.
|
||||
|
||||
# To complete URLs, you must make a URL database locally 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
|
||||
|
||||
local ipre scheme dirs files
|
||||
|
||||
if [[ "$1" = -f ]]; then
|
||||
shift
|
||||
_files "$@" && return
|
||||
fi
|
||||
|
||||
if [[ -z "$compconfig[_urls_dir]" ]]; then
|
||||
compconfig[_urls_dir]=${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_dir]/$scheme/$PREFIX$SUFFIX" &&
|
||||
-s "$compconfig[_urls_dir]/$scheme/$PREFIX$SUFFIX" ]]; then
|
||||
compadd "$@" -QU -- "$ipre$(<"$compconfig[_urls_dir]/$scheme/$PREFIX$SUFFIX")"
|
||||
else
|
||||
dirs=($compconfig[_urls_dir]/$scheme/$PREFIX*$SUFFIX(/:t))
|
||||
files=($compconfig[_urls_dir]/$scheme/$PREFIX*$SUFFIX(.:t))
|
||||
compset -P '*/'
|
||||
compadd "$@" -Q -S '/' - $dirs
|
||||
if [[ "$scheme" = bookmark ]]; then
|
||||
compadd "$@" -QS '' - $files
|
||||
else
|
||||
compadd "$@" -Q - $files
|
||||
fi
|
||||
fi
|
Loading…
Reference in a new issue