r1229 - in /trunk/packages/vim: debian/changelog runtime/ftplugin/debchangelog.vim runtime/ftplugin/debcontrol.vim

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Sat Mar 8 19:40:34 UTC 2008


Author: jamessan
Date: Sat Mar  8 19:40:34 2008
New Revision: 1229

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1229
Log:
* Change the debchangelog and debcontrol ftplugins to require enabling of
  folding instead of folding by default.

Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/runtime/ftplugin/debchangelog.vim
    trunk/packages/vim/runtime/ftplugin/debcontrol.vim

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1229&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sat Mar  8 19:40:34 2008
@@ -8,6 +8,8 @@
     - sh.vim_syntax.diff:
       + No longer mishighlight parenthetical expressions inside arithmetic
         expansions.  (Closes: #468366)
+  * Change the debchangelog and debcontrol ftplugins to require enabling of
+    folding instead of folding by default.
 
  -- James Vega <jamessan at debian.org>  Wed, 27 Feb 2008 12:34:27 -0500
 

Modified: trunk/packages/vim/runtime/ftplugin/debchangelog.vim
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/runtime/ftplugin/debchangelog.vim?rev=1229&op=diff
==============================================================================
--- trunk/packages/vim/runtime/ftplugin/debchangelog.vim (original)
+++ trunk/packages/vim/runtime/ftplugin/debchangelog.vim Sat Mar  8 19:40:34 2008
@@ -12,7 +12,7 @@
 let b:did_ftplugin=1
 
 " {{{1 Local settings (do on every load)
-if !exists("g:debchangelog_fold_disable")
+if exists("g:debchangelog_fold_enable")
   setlocal foldmethod=expr
 endif
 setlocal foldexpr=DebGetChangelogFold(v:lnum)

Modified: trunk/packages/vim/runtime/ftplugin/debcontrol.vim
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/runtime/ftplugin/debcontrol.vim?rev=1229&op=diff
==============================================================================
--- trunk/packages/vim/runtime/ftplugin/debcontrol.vim (original)
+++ trunk/packages/vim/runtime/ftplugin/debcontrol.vim Sat Mar  8 19:40:34 2008
@@ -11,7 +11,7 @@
 let b:did_ftplugin=1
 
 " {{{1 Local settings (do on every load)
-if !exists("g:debcontrol_fold_disable")
+if exists("g:debcontrol_fold_enable")
   setlocal foldmethod=expr
 endif
 setlocal foldexpr=DebControlFold(v:lnum)




More information about the pkg-vim-maintainers mailing list