diff options
author | Clint Adams <clint@users.sourceforge.net> | 2002-08-07 00:15:05 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2002-08-07 00:15:05 +0000 |
commit | cea681c9281d53e91cef7ce54accb7d82e0b94b9 (patch) | |
tree | de5f91ef3bc3a5d1f6613151ccaf72963bff4f73 | |
parent | e4d8a697bc0f44ae4f2a8b71f7480f57d518c486 (diff) | |
download | zsh-cea681c9281d53e91cef7ce54accb7d82e0b94b9.tar.gz zsh-cea681c9281d53e91cef7ce54accb7d82e0b94b9.tar.xz zsh-cea681c9281d53e91cef7ce54accb7d82e0b94b9.zip |
17509: complete .xhtml files as well as .html files.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_lynx | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 9acb44df6..985fefac0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-08-07 Clint Adams <clint@zsh.org> + + * 17509: Completion/Unix/Command/_lynx: complete .xhtml files as well + as .html files. + 2002-08-06 Clint Adams <clint@zsh.org> * 17508: Completion/Unix/Type/_urls: complete local files after diff --git a/Completion/Unix/Command/_lynx b/Completion/Unix/Command/_lynx index b6e6fe47c..46f2a9410 100644 --- a/Completion/Unix/Command/_lynx +++ b/Completion/Unix/Command/_lynx @@ -107,6 +107,6 @@ restrictions) outside_telnet print shell suspend telnet_port useragent ;; html) - _alternative 'files:file:_files "*.html"' 'urls:url:_urls' + _alternative 'files:file:_files "*.x#html"' 'urls:url:_urls' ;; esac |