From 36fc535cb1353786d7edacfea1cd3ececaf6cf5d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 4 Mar 2006 21:49:37 +0000 Subject: updated for version 7.0214 --- runtime/spell/cleanadd.vim | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'runtime/spell/cleanadd.vim') diff --git a/runtime/spell/cleanadd.vim b/runtime/spell/cleanadd.vim index 14eb83a110..cb7620fbf5 100644 --- a/runtime/spell/cleanadd.vim +++ b/runtime/spell/cleanadd.vim @@ -3,17 +3,20 @@ " Last Update: 2006 Jan 19 " Time in seconds after last time an ll.xxxxx.add file was updated -" Default is one hour. +" Default is one second. +" If you invoke this script often set it to something bigger, e.g. 60 * 60 +" (one hour) if !exists("g:spell_clean_limit") - let g:spell_clean_limit = 60 * 60 + let g:spell_clean_limit = 1 endif " Loop over all the runtime/spell/*.add files. +" Delete all comment lines, except the ones starting with ##. for s:fname in split(globpath(&rtp, "spell/*.add"), "\n") if filewritable(s:fname) && localtime() - getftime(s:fname) > g:spell_clean_limit - silent exe "split " . escape(s:fname, ' \') + silent exe "tab split " . escape(s:fname, ' \') echo "Processing" s:fname - silent! g/^#/d + silent! g/^#[^#]/d silent update close endif -- cgit v1.2.3