r773 - in /trunk/packages/vim: debian/changelog patches/perl.vim-ftplugin_perldoc.diff patches/ruby.vim-ftplugin_ri.diff patches/series

zack at users.alioth.debian.org zack at users.alioth.debian.org
Mon Sep 25 08:24:26 UTC 2006


Author: zack
Date: Mon Sep 25 08:24:16 2006
New Revision: 773

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=773
Log:
added keyword lookup support for perl/ruby files using perldoc/ri respectively

Added:
    trunk/packages/vim/patches/perl.vim-ftplugin_perldoc.diff
    trunk/packages/vim/patches/ruby.vim-ftplugin_ri.diff
Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/patches/series

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=773&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Mon Sep 25 08:24:16 2006
@@ -12,7 +12,12 @@
   * Update debian/copyright with the license information for the user and
     reference manuals.
 
- -- James Vega <jamessan at debian.org>  Tue, 19 Sep 2006 09:49:02 -0400
+  [ Stefano Zacchiroli ]
+  * Added patches perl.vim-ftplugin_perldoc.diff and
+    ruby.vim-ftplugin_ri.diff, which trigger usage of perldoc/ri for keyword
+    lookup on perl/ruby files. (closes: #389332)
+
+ -- Stefano Zacchiroli <zack at debian.org>  Mon, 25 Sep 2006 10:15:50 +0200
 
 vim (1:7.0-094+1) unstable; urgency=medium
 

Added: trunk/packages/vim/patches/perl.vim-ftplugin_perldoc.diff
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/perl.vim-ftplugin_perldoc.diff?rev=773&op=file
==============================================================================
--- trunk/packages/vim/patches/perl.vim-ftplugin_perldoc.diff (added)
+++ trunk/packages/vim/patches/perl.vim-ftplugin_perldoc.diff Mon Sep 25 08:24:16 2006
@@ -1,0 +1,14 @@
+Index: vim/runtime/ftplugin/perl.vim
+===================================================================
+--- vim/runtime/ftplugin/perl.vim.orig
++++ vim/runtime/ftplugin/perl.vim
+@@ -39,6 +39,9 @@
+ set isfname+=:
+ "setlocal iskeyword=48-57,_,A-Z,a-z,:
+ 
++" Debian patch: use perldoc for keyword lookup
++setlocal keywordprg=perldoc\ -f
++
+ " Set this once, globally.
+ if !exists("perlpath")
+     if executable("perl")

Added: trunk/packages/vim/patches/ruby.vim-ftplugin_ri.diff
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/ruby.vim-ftplugin_ri.diff?rev=773&op=file
==============================================================================
--- trunk/packages/vim/patches/ruby.vim-ftplugin_ri.diff (added)
+++ trunk/packages/vim/patches/ruby.vim-ftplugin_ri.diff Mon Sep 25 08:24:16 2006
@@ -1,0 +1,14 @@
+Index: vim/runtime/ftplugin/ruby.vim
+===================================================================
+--- vim/runtime/ftplugin/ruby.vim.orig
++++ vim/runtime/ftplugin/ruby.vim
+@@ -20,6 +20,9 @@
+ let s:cpo_save = &cpo
+ set cpo&vim
+ 
++" Debian patch: use ri for keyword lookup
++setlocal keywordprg=ri
++
+ " Matchit support
+ if exists("loaded_matchit") && !exists("b:match_words")
+   let b:match_ignorecase = 0

Modified: trunk/packages/vim/patches/series
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/patches/series?rev=773&op=diff
==============================================================================
--- trunk/packages/vim/patches/series (original)
+++ trunk/packages/vim/patches/series Mon Sep 25 08:24:16 2006
@@ -9,3 +9,5 @@
 de.po.diff -p0
 filetype.vim-better_tex_vs_plaintex.diff -p0
 gui_xmebw.c-lesstif_crash.diff -p0
+perl.vim-ftplugin_perldoc.diff -p0
+ruby.vim-ftplugin_ri.diff -p0




More information about the pkg-vim-maintainers mailing list