0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

updated for version 7.0004

This commit is contained in:
Bram Moolenaar
2004-07-02 15:38:35 +00:00
parent 843ee41eb8
commit cfbc5ee48e
57 changed files with 2247 additions and 432 deletions

View File

@@ -1,11 +1,12 @@
" NetrwFileHandlers: contains various extension-based file handlers for
" netrw's browser
" Author: Charles E. Campbell, Jr.
" Date: Jun 25, 2004
" Version: 1
" Date: Jul 02, 2004
" Version: 2
" ---------------------------------------------------------------------
" NetrwFileHandler_html: handles html
" NetrwFileHandler_html: handles html when the user hits "x" when the
" cursor is atop a *.html file
fun! NetrwFileHandler_html(webpage)
" call Dfunc("NetrwFileHandler_html(".a:webpage.")")
@@ -17,8 +18,14 @@ fun! NetrwFileHandler_html(webpage)
else
let page= substitute(a:webpage,'^\w\+://\%(\w*@\)\=\(\w\+\)/','http://\1/','e')
endif
if executable("mozilla")
" call Decho("executing !mozilla ".page)
exe "!mozilla ".page
exe "!mozilla ".page
elseif executable("netscape")
" call Decho("executing !netscape ".page)
exe "!netscape ".page
endif
" call Dret("NetrwFileHandler_html")
endfun