Re: [Vim-latex-devel] Two suggestions about F9
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2003-06-12 00:29:45
|
On Fri, 30 May 2003, Jakub Turski wrote: > Greetings ;) > > 1/ It is slow :/ Awfully. Running here on 1GHz athlon, there's a lag upon > pressing [down] on the list with the choices. Can't this be improved? The lag is in pressing <down> in the choices or loading up the choices in the first place? If the delay is in loading the choices for first time: I cannot think about anything which can be done... <F9> works by calling grep which is external to vim... The time taken after that should be negligible... Infact <F9> is essentially just the standard vim grep command. I assume therefore that doing something like :grep \\label{ *.vim from within vim is also very slow for you... For me (Pentium 4 1.3 GHz), there is a fractional second lag, but its not a big deal. How many .tex file do you have? And how big? Thats mostly the reason for the slowdown. Are you using fgrep or findstr... fgrep should be decently fast. > 2/ A small bug - after completing argument for \ref, scrolloff doesn't > get back to its previous value (I use scrolloff=0), it stays at 100. I'll fix this. > I'm using latest CVS. Thanks for the info Srinath |