comparison runtime/ftplugin/debchangelog.vim @ 481:66080ac5dab7 v7.0130

updated for version 7.0130
author vimboss
date Mon, 15 Aug 2005 21:41:48 +0000
parents 3fc0f57ecb91
children d3bbb5dd3913
comparison
equal deleted inserted replaced
480:bf5ba8a0cdee 481:66080ac5dab7
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: Debian Changelog 2 " Language: Debian Changelog
3 " Maintainer: Michael Piefel <piefel@informatik.hu-berlin.de> 3 " Maintainer: Michael Piefel <piefel@informatik.hu-berlin.de>
4 " Last Change: 23 March 2004 4 " Last Change: 15 August 2005
5 5
6 if exists("g:did_changelog_ftplugin") 6 if exists("g:did_changelog_ftplugin")
7 finish 7 finish
8 endif 8 endif
9 9
28 if exists("$DEBEMAIL") 28 if exists("$DEBEMAIL")
29 return $DEBEMAIL 29 return $DEBEMAIL
30 elseif exists("$EMAIL") 30 elseif exists("$EMAIL")
31 return $EMAIL 31 return $EMAIL
32 elseif exists("g:debianemail") 32 elseif exists("g:debianemail")
33 return g:debianfullemail 33 return g:debianemail
34 else 34 else
35 return "your@email.address" 35 return "your@email.address"
36 endif 36 endif
37 endfunction 37 endfunction
38 38