summaryrefslogtreecommitdiffstats
path: root/runtime/spell/cleanadd.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-04 21:49:37 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-04 21:49:37 +0000
commit36fc535cb1353786d7edacfea1cd3ececaf6cf5d (patch)
treed6384287d657b4fb88c1f66176d870986d5a38fe /runtime/spell/cleanadd.vim
parentd0131a8bd20b330a5ded49989ffc8b79e051dd9d (diff)
updated for version 7.0214
Diffstat (limited to 'runtime/spell/cleanadd.vim')
-rw-r--r--runtime/spell/cleanadd.vim11
1 files changed, 7 insertions, 4 deletions
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