r656 - in /trunk/packages/vim/debian: changelog runtime/gvimrc runtime/vimrc

zack at users.alioth.debian.org zack at users.alioth.debian.org
Thu May 11 00:55:15 UTC 2006


Author: zack
Date: Thu May 11 00:55:12 2006
New Revision: 656

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=656
Log:
- source vimrc.local from /etc/vim/vimrc (since a lot of users still have it)
- added a comment about vimrc.local being deprecated
- added a comment which suggests how to have reversed video gui

Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/debian/runtime/gvimrc
    trunk/packages/vim/debian/runtime/vimrc

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=656&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Thu May 11 00:55:12 2006
@@ -23,6 +23,10 @@
     placeholder with the appropriate vim<version> string
   * got rid of the /usr/share/vim/vimcurrent symlink, no longer needed now we
     source debian.vim
+  * source vimrc.local from system-wide vimrc since a lot of users have it,
+    added a comment about that file being deprecated
+  * added a comment to system-wide gvimrc about how to obtain a reversed video
+    vim gui
 
  -- James Vega <jamessan at debian.org>  Wed, 10 May 2006 17:03:28 -0500
 

Modified: trunk/packages/vim/debian/runtime/gvimrc
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/runtime/gvimrc?rev=656&op=diff
==============================================================================
--- trunk/packages/vim/debian/runtime/gvimrc (original)
+++ trunk/packages/vim/debian/runtime/gvimrc Thu May 11 00:55:12 2006
@@ -7,3 +7,8 @@
 "else
 "  set guifont=-misc-fixed-medium-r-normal--14-130-75-75-c-70-iso8859-1
 "endif
+
+" If you want to run gvim with a dark background there is no easy way to do
+" that hacking the configuration file. Consider running 'gvim -reverse'
+" instead.
+

Modified: trunk/packages/vim/debian/runtime/vimrc
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/runtime/vimrc?rev=656&op=diff
==============================================================================
--- trunk/packages/vim/debian/runtime/vimrc (original)
+++ trunk/packages/vim/debian/runtime/vimrc Thu May 11 00:55:12 2006
@@ -48,3 +48,9 @@
 "set hidden             " Hide buffers when they are abandoned
 "set mouse=a		" Enable mouse usage (all modes) in terminals
 
+" Source a global configuration file if available
+" XXX Deprecated, please move your changes here in /etc/vim/vimrc
+if filereadable("/etc/vim/vimrc.local")
+  source /etc/vim/vimrc.local
+endif
+




More information about the pkg-vim-maintainers mailing list