Hi all, I've noticed that my svn commit messages aren't colored properly when I add a file with history (via svn copy, for example). I've attached a small patch for the svn.vim syntax file to correct the regex.
Thanks! Myk Taylor -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
--- vim73/runtime/syntax/svn.vim.orig 2012-04-09 10:51:46.000000000 -0700 +++ vim73/runtime/syntax/svn.vim 2012-04-09 11:00:00.211524791 -0700 @@ -20,7 +20,7 @@ syn region svnRegion start="^--.*--$" end="\%$" contains=ALL contains=@NoSpell syn match svnRemoved "^D .*$" contained -syn match svnAdded "^A[ M] .*$" contained +syn match svnAdded "^A[ M] [ +] .*$" contained syn match svnModified "^M[ M] .*$" contained syn match svnProperty "^_M .*$" contained
