diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-08-29 22:25:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-08-29 22:25:38 +0000 |
commit | ac6e65f88da446bc764ff13a23d854fd72ffedcf (patch) | |
tree | 4c4cd8700dcb53ac3a236a056320e2caf062a23d /runtime/optwin.vim | |
parent | 81f1ecbc4dc885a4757e5cc64002f4b22f397f18 (diff) | |
download | vim-git-ac6e65f88da446bc764ff13a23d854fd72ffedcf.tar.gz |
updated for version 7.0138v7.0138
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 2446b9bd3..23c0379db 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2005 Jul 11 +" Last Change: 2005 Aug 29 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -403,6 +403,8 @@ if has("syntax") call <SID>OptionL("spc") call append("$", "spellsuggest\tmethods used to suggest corrections") call <SID>OptionG("sps", &sps) + call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing") + call <SID>OptionG("msm", &msm) endif |