Hi all,
I attached two small patches:
- the first will correct the behavior of < <M-L>, there was one "\"
missing.
- the other one will correct the behaviour with bib-files with capital
entries.
Best Regards
Gerd
diff -ur '--exclude=.svn' ./ftplugin/latex-suite/brackets.vim
/HOME1/users/personal/gerw/gerw_conf/vim/ftplugin/latex-suite/brackets.vim
--- ./ftplugin/latex-suite/brackets.vim 2010-12-22 09:59:05.000000000 +0100
+++ /HOME1/users/personal/gerw/gerw_conf/vim/ftplugin/latex-suite/brackets.vim
2010-12-22 09:56:58.000000000 +0100
@@ -87,7 +87,7 @@
let rhs = matchstr(matchedbrackets, char.'\zs.\ze')
return
"\<BS>".IMAP_PutTextWithMovement('\left'.add.char.'<++>\right'.add.rhs.'<++>')
elseif char == '<'
- return "\<BS>".IMAP_PutTextWithMovement('langle<++>\rangle<++>')
+ return "\<BS>".IMAP_PutTextWithMovement('\langle
<++>\rangle<++>')
elseif char == 'q'
return "\<BS>".IMAP_PutTextWithMovement('\lefteqn{<++>}<++>')
else
diff -ur '--exclude=.svn' ./ftplugin/latex-suite/bibtools.py
/HOME1/users/personal/gerw/gerw_conf/vim/ftplugin/latex-suite/bibtools.py
--- ./ftplugin/latex-suite/bibtools.py 2010-12-22 09:59:05.000000000 +0100
+++ /HOME1/users/personal/gerw/gerw_conf/vim/ftplugin/latex-suite/bibtools.py
2010-06-26 11:53:32.000000000 +0200
@@ -86,7 +86,7 @@
mn = re.search(r',|$', body)
value = m.group(2) + body[:(mn.start(0))].rstrip()
- self[field] = re.sub(r'\s+', ' ', value)
+ self[field.lower()] = re.sub(r'\s+', ' ', value)
body = body[(mn.start(0)+1):]
self['bodytext'] += (' %s: %s\n' % (field, value))
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel