about summary refs log tree commit diff
path: root/Completion/User
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:04:50 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-04-02 12:04:50 +0000
commit7228dcd53f188ae45823cad04224bdd6e60abbe8 (patch)
treed0020b37fc6d4a033b43239efcbfd01400a5f3be /Completion/User
parentd4bb220a545768a084ca332caac7493e765b43e7 (diff)
downloadzsh-7228dcd53f188ae45823cad04224bdd6e60abbe8.tar.gz
zsh-7228dcd53f188ae45823cad04224bdd6e60abbe8.tar.xz
zsh-7228dcd53f188ae45823cad04224bdd6e60abbe8.zip
moved to Completion/Unix/Command/_w3m
Diffstat (limited to 'Completion/User')
-rw-r--r--Completion/User/_w3m48
1 files changed, 0 insertions, 48 deletions
diff --git a/Completion/User/_w3m b/Completion/User/_w3m
deleted file mode 100644
index f693a1e7c..000000000
--- a/Completion/User/_w3m
+++ /dev/null
@@ -1,48 +0,0 @@
-#compdef w3m
-
-local curcontext="$curcontext" state line
-typeset -A opt_args
-
-_arguments \
-  '-t[tabwidth]:tabwidth:' \
-  '-r[ignore backspace effect]' \
-  '-l[preserved lines]:number of lines:' \
-  '-B[load bookmark]' \
-  '-bookmark:bookmark file:_files' \
-  '-T[content-type]:content type:' \
-  '-m[internet message mode]' \
-  '-v[visual startup mode]' \
-  '-M[monochrome display]' \
-  '-F[automatically render frame]' \
-  '-dump' \
-  '-cols:column width:' \
-  '-dump_source' \
-  '-dump_head' \
-  '+:goto line:' \
-  '-num[show line number]' \
-  '-no-proxy' \
-  '-no-mouse' \
-  '-cookie' \
-  '-no-cookie' \
-  '-no-graph' \
-  '-S[squeeze multiple blank lines]' \
-  '-W[toggle wrap search mode]' \
-  '-X[do not use termcap init/deinit]' \
-  '-o[option]:option-value:' \
-  '-config:configfile:_files' \
-  '-debug' \
-  ':url:->url' && return 0
-
-case $state in
-	url)
-	local _w3mhistory
-
-	if [[ -s ~/.w3m/history ]]; then
-	   _w3mhistory=(${(f)"$(<$HOME/.w3m/history)"})
-	   compadd $_w3mhistory
-	fi
-
-	_urls || _files -g '*.html'
-	;;
-
-esac