summaryrefslogtreecommitdiff
path: root/Completion/User/_lynx
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/User/_lynx')
-rw-r--r--Completion/User/_lynx109
1 files changed, 109 insertions, 0 deletions
diff --git a/Completion/User/_lynx b/Completion/User/_lynx
new file mode 100644
index 000000000..42c3498fc
--- /dev/null
+++ b/Completion/User/_lynx
@@ -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 "$@"