diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-22 22:37:09 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-22 22:37:09 +0000 |
commit | 6ad01d6077d39e3662805a34eaf6b3e104a4e003 (patch) | |
tree | 9578a1fcbda376d8235c0758c029c181acf7a941 /runtime | |
parent | 30abd28f16a6c1ccc3263d49917e985ebab8fea9 (diff) | |
download | vim-6ad01d6077d39e3662805a34eaf6b3e104a4e003.zip |
updated for version 7.0090
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/compiler/msvc.vim | 10 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 26 |
2 files changed, 16 insertions, 20 deletions
diff --git a/runtime/compiler/msvc.vim b/runtime/compiler/msvc.vim index 5fb1f24b3..056225c7d 100644 --- a/runtime/compiler/msvc.vim +++ b/runtime/compiler/msvc.vim @@ -1,17 +1,13 @@ " Vim compiler file " Compiler: Miscrosoft Visual C " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2004 Mar 19 +" Last Change: 2005 Jun 22 if exists("current_compiler") finish endif let current_compiler = "msvc" -if exists(":CompilerSet") != 2 " older Vim always used :setlocal - command -nargs=* CompilerSet setlocal <args> -endif - " The errorformat for MSVC is the default. -CompilerSet errorformat& -CompilerSet makeprg=nmake +setlocal errorformat& +setlocal makeprg=nmake diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 6159b8fd6..feb8e809e 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -99,25 +99,25 @@ PLANNED FOR VERSION 7.0: - Add SPELLCHECKER, with support for many languages. - Spell checking code todo's: - Code for making suggestions: - - ":mkspell" runs out of memory for Polish with utf-8. - - When 'spellfile' directory doesn't exist, ask user to create it? - - When 'spelllang' has more than one language only .add file of - first is used? - - Aspell has the "special" character, useful? - - Can "the the" be added as a bad word? - Add BAD item in .aff file, set WF_BANNED flag. - - Simple and fast sound-a-like: mapping list for first char and rest - vowel as first char: * - remove other vowels - - How about words that are split over two lines? E.g., "et al.". - - When putting map string in .spl file check for duplicate chars. - Hebrew: also use prefixes for suggestions. See message from Kaminsky (June 20) for ideas. + - When "tn" has been marked as bad word it's sometimes still used + for suggestions. Depends on the order. + - Suggestions for "t he": works well when 'spellsuggest' is "fast", + not when it's "best" or "double". Sound of "the" is "@", for "t + he" it is "t h". - The sound-folding doesn't work for multi-byte characters. It's very slow too. + - Simple and fast sound-a-like: mapping list for first char and rest + vowel as first char: * + remove other vowels + - When 'spellfile' directory doesn't exist, ask user to create it? + - When 'spelllang' has more than one language only .add file of + first is used? - Also put list of word characters in word list file. Otherwise the one for Italian may differ from the one used for English. - - Make "en-rare" spell file. + - Make "en-rare" spell file. Support additional files, e.g. + "medical". Convention: use en_US (language_region) and en-rare (language-field) Add hl groups to 'spelllang'? :set spelllang=en_us,en-rare/SpellRare,en-math/SpellMath |