comparison runtime/autoload/netrwFileHandlers.vim @ 857:b933657f7c9d

updated for version 7.0g01
author vimboss
date Tue, 02 May 2006 22:08:30 +0000
parents 95dac6af3b3a
children 96cd8222a819
comparison
equal deleted inserted replaced
856:8cd729851562 857:b933657f7c9d
1 " netrwFileHandlers: contains various extension-based file handlers for 1 " netrwFileHandlers: contains various extension-based file handlers for
2 " netrw's browsers' x command ("eXecute launcher") 2 " netrw's browsers' x command ("eXecute launcher")
3 " Author: Charles E. Campbell, Jr. 3 " Author: Charles E. Campbell, Jr.
4 " Date: Mar 22, 2006 4 " Date: May 01, 2006
5 " Version: 8 5 " Version: 8
6 " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1 6 " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1
7 " Permission is hereby granted to use and distribute this code, 7 " Permission is hereby granted to use and distribute this code,
8 " with or without modifications, provided that this copyright 8 " with or without modifications, provided that this copyright
9 " notice is copied with it. Like anything else that's free, 9 " notice is copied with it. Like anything else that's free,
23 let s:keepcpo= &cpo 23 let s:keepcpo= &cpo
24 set cpo&vim 24 set cpo&vim
25 let g:loaded_netrwFileHandlers= "v8" 25 let g:loaded_netrwFileHandlers= "v8"
26 26
27 " --------------------------------------------------------------------- 27 " ---------------------------------------------------------------------
28 " netrwFileHandlers#Invoke: {{{2 28 " netrwFileHandlers#Invoke: {{{1
29 fun! netrwFileHandlers#Invoke(exten,fname) 29 fun! netrwFileHandlers#Invoke(exten,fname)
30 " call Dfunc("netrwFileHandlers#Invoke(exten<".a:exten."> fname<".a:fname.">)") 30 " call Dfunc("netrwFileHandlers#Invoke(exten<".a:exten."> fname<".a:fname.">)")
31 31
32 if a:exten != "" && exists("*s:NFH_".a:exten) 32 if a:exten != "" && exists("*s:NFH_".a:exten)
33 " call Decho("let ret= netrwFileHandlers#NFH_".a:exten.'("'.a:fname.'")') 33 " call Decho("let ret= netrwFileHandlers#NFH_".a:exten.'("'.a:fname.'")')