Re: [Vim-latex-devel] Labels with spaces fools <F9>
Brought to you by:
srinathava,
tmaas
From: Till M. <ope...@ti...> - 2010-10-27 21:31:50
|
On Wed, Oct 27, 2010 at 07:21:41PM +0200, pat...@fr... wrote: > Dear vim-latex-devel, > > As reported in > http://permalink.gmane.org/gmane.comp.editors.vim.latex.devel/88 > if your LaTeX file contains something like > \label{section:Important stuff} > (note the space between Important and stuff) then \ref{<F9>} > will bring a correct outline buffer but when you press Enter on the line > section:Important stuff > you will get in your original file: > \ref{section:Important} > instead of the expected > \ref{section:Important stuff} This works for me with this minimal example and SVN revision 1112: \documentclass{article} \begin{document} \label{label1nospace} \label{label2 space} \label{label3nospace} \ref{ \end{document} Regards Till |