7 Commits

Author SHA1 Message Date
Srinath Avadhanula ffa9b5e465 Bug: In Vim6, there is an error on startup.
Why: Apparently, you cannot use
     :if v:version >= 700
        :for something
            ...
        :endfor
     :endif
     the :endfor and :for trigger errors.
Fix: For now, just remove this code from latex-suite since there is a new
     release purely for vim7 coming up.
2006-04-17 23:50:10 +00:00
Srinath Avadhanula cd184726e7 New: Significant speedup for the FB_DisplayFiles() function. Instead of
using FB_Strntok() to get the i^th line of glob('*'), iterate using
     stridx(). This makes the time required by FB_OpenFileBrowser() to list
     the files in C:/WINDOWS/system32 reduce from 104 seconds to 1 second.
     If v:version >= 700, then we can directly use Vim's inbuilt list and
     split() functions. This makes the time go to 0.6 seconds.
2006-03-28 19:15:18 +00:00
Srinath Avadhanula 059382b7db New: Used one of the advantages of using svn. Liberally used the 'prop*'
commands to do the following:
     1. change the EOL style of all vim files to be just LF.
     2. changed the mime-type of all files to text/plain
     3. removed the executable flag on all files.
     This should hopefully make the repo look better on all platforms etc.
2006-03-20 09:45:45 +00:00
Srinath Avadhanula 048e26a104 Bug: Sourcing problems because line continuation was used here.
Fix: Adjust 'cpo' settings at the start of the script.
2006-03-20 08:35:08 +00:00
Srinath Avadhanula e2759b1bcb - new lightweight replacement for explorer.vim 2003-09-02 07:13:44 +00:00
Srinath Avadhanula 48fc2e5a1b Botch up with the previous addition. It got added in the main branch. I am
removing it from there and adding it into the branch as promised.
2003-08-28 19:17:48 +00:00
Srinath Avadhanula 1c87aa9b9c A lightweight replacement for explorer.vim so we can remove that.
NOTE: This is a commit on a branch. Do not use this for any production
purposes.
2003-08-28 19:16:28 +00:00