On Sun, Sep 10, 2006 at 01:05:11PM +0000, Yakov Lerner wrote: > How can a script test for specific patchlevel ? > For example, I have vim 7.0.86 and I need to check in the script that > patchlevel is >= 7.0.86. But v:version is 700. How ? It would be > nice if to have patchlist available through some v: variable.
I agree that a List of patch numbers would be convenient. You can test for a specific patch with has("patch86"). :help has-patch HTH --Benji Fisher