r1296 - in /trunk/packages/vim-scripts/debian: changelog patches/00list patches/mkd-preformatted.dpatch

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Sun Dec 7 00:32:06 UTC 2008


Author: jamessan
Date: Sun Dec  7 00:32:06 2008
New Revision: 1296

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1296
Log:
syntax/mkd.vim: Do not restrict preformatted text from containing '*',
'-', or '+' characters.  (Closes: #499878)

Added:
    trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch   (with props)
Modified:
    trunk/packages/vim-scripts/debian/changelog
    trunk/packages/vim-scripts/debian/patches/00list

Modified: trunk/packages/vim-scripts/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/debian/changelog?rev=1296&op=diff
==============================================================================
--- trunk/packages/vim-scripts/debian/changelog (original)
+++ trunk/packages/vim-scripts/debian/changelog Sun Dec  7 00:32:06 2008
@@ -1,10 +1,12 @@
-vim-scripts (20081205-1) UNRELEASED; urgency=low
+vim-scripts (20081206-1) UNRELEASED; urgency=low
 
   * Updated addons:
     - supertab, NERD_commenter, xmledit (Closes: #503707), vcscommand, Align,
       gnupg, bufexplorer
   * Renamed addons:
     - themes => color_sample_pack
+  * syntax/mkd.vim: Do not restrict preformatted text from containing '*',
+    '-', or '+' characters.  (Closes: #499878)
 
  -- James Vega <jamessan at debian.org>  Fri, 05 Dec 2008 11:08:16 -0500
 

Modified: trunk/packages/vim-scripts/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/debian/patches/00list?rev=1296&op=diff
==============================================================================
--- trunk/packages/vim-scripts/debian/patches/00list (original)
+++ trunk/packages/vim-scripts/debian/patches/00list Sun Dec  7 00:32:06 2008
@@ -18,3 +18,4 @@
 lbdbq-inputlist
 closetag-sanity
 lbdbq-query
+mkd-preformatted

Added: trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch?rev=1296&op=file
==============================================================================
--- trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch (added)
+++ trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch Sun Dec  7 00:32:06 2008
@@ -1,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## mkd-preformatted.dpatch by James Vega <jamessan at debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Do not restrict preformatted text from containing '*', '-', or '+'
+
+ at DPATCH@
+diff -urNad vim-scripts~/syntax/mkd.vim vim-scripts/syntax/mkd.vim
+--- vim-scripts~/syntax/mkd.vim	2008-12-06 19:25:15.000000000 -0500
++++ vim-scripts/syntax/mkd.vim	2008-12-06 19:27:00.000000000 -0500
+@@ -54,7 +54,7 @@
+ syn match  mkdRule      /^\s*\*\{3,5}$/
+ syn match  mkdListItem  "^\s*[-*+]\s\+"
+ syn match  mkdListItem  "^\s*\d\+\.\s\+"
+-syn match  mkdCode      /^\s*\n\(\(\s\{4,}\|[\t]\+\)[^*-+ ].*\n\)\+/
++syn match  mkdCode      /^\s*\n\(\(\s\{4,}\|[\t]\+\)[^ \t].*\n\)\+/
+ syn region mkdCode      start=/`/                   end=/`/
+ syn region mkdCode      start=/\s*``[^`]*/          end=/[^`]*``\s*/
+ syn region mkdBlockquote start=/^\s*>/              end=/$/                 contains=mkdLineContinue, at Spell

Propchange: trunk/packages/vim-scripts/debian/patches/mkd-preformatted.dpatch
------------------------------------------------------------------------------
    svn:executable = *




More information about the pkg-vim-maintainers mailing list