[Vim-latex-cvs] SF.net SVN: vim-latex: [1015] trunk/vimfiles/ftplugin/latex-suite
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2006-05-01 21:29:46
|
Revision: 1015 Author: srinathava Date: 2006-05-01 14:29:40 -0700 (Mon, 01 May 2006) ViewCVS: http://svn.sourceforge.net/vim-latex/?rev=1015&view=rev Log Message: ----------- Bug: sloppybar should be sloppypar (Bernhard Walle) Fix: Change ESB->\begin{sloppybar} to ESP->\begin{sloppypar} It looks like lots of people might complain because of this because ESP is quite a common acronym... Modified Paths: -------------- trunk/vimfiles/ftplugin/latex-suite/envmacros.vim trunk/vimfiles/ftplugin/latex-suite/version.vim trunk/vimfiles/ftplugin/latex-suite/wizardfuncs.vim Modified: trunk/vimfiles/ftplugin/latex-suite/envmacros.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/envmacros.vim 2006-05-01 04:32:11 UTC (rev 1014) +++ trunk/vimfiles/ftplugin/latex-suite/envmacros.vim 2006-05-01 21:29:40 UTC (rev 1015) @@ -238,7 +238,7 @@ call s:Tex_EnvMacros('EFR', '&Structure.', 'flushright') call s:Tex_EnvMacros('EQN', '&Structure.', 'quotation') call s:Tex_EnvMacros('EQE', '&Structure.', 'quote') -call s:Tex_EnvMacros('ESB', '&Structure.', 'sloppybar') +call s:Tex_EnvMacros('ESP', '&Structure.', 'sloppypar') call s:Tex_EnvMacros('ETI', '&Structure.', 'theindex') call s:Tex_EnvMacros('ETP', '&Structure.', 'titlepage') call s:Tex_EnvMacros('EVM', '&Structure.', 'verbatim') Modified: trunk/vimfiles/ftplugin/latex-suite/version.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/version.vim 2006-05-01 04:32:11 UTC (rev 1014) +++ trunk/vimfiles/ftplugin/latex-suite/version.vim 2006-05-01 21:29:40 UTC (rev 1015) @@ -24,7 +24,7 @@ " "stabilize" that version by releasing a few pre-releases and then " keep that as a stable point. function! Tex_Version() - return "Latex-Suite: version 1.8.22" + return "Latex-Suite: version 1.8.23" endfunction com! -nargs=0 TVersion echo Tex_Version() Modified: trunk/vimfiles/ftplugin/latex-suite/wizardfuncs.vim =================================================================== --- trunk/vimfiles/ftplugin/latex-suite/wizardfuncs.vim 2006-05-01 04:32:11 UTC (rev 1014) +++ trunk/vimfiles/ftplugin/latex-suite/wizardfuncs.vim 2006-05-01 21:29:40 UTC (rev 1015) @@ -287,7 +287,7 @@ \."\n <mapleader> is a value of g:Tex_Leader2" \."\n I v&V I v&V" \."\n ELI ".g:Tex_Leader2."li list EQN ".g:Tex_Leader2."qn quotation" -\."\n EDE ".g:Tex_Leader2."de description ESB ".g:Tex_Leader2."sb sloppybar" +\."\n EDE ".g:Tex_Leader2."de description ESP ".g:Tex_Leader2."sb sloppypar" \."\n EEN ".g:Tex_Leader2."en enumerate ETI ".g:Tex_Leader2."ti theindex" \."\n EIT ".g:Tex_Leader2."it itemize ETP ".g:Tex_Leader2."tp titlepage" \."\n ETI ".g:Tex_Leader2."ti theindex EVM ".g:Tex_Leader2."vm verbatim" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |