0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

updated for version 7.0090

This commit is contained in:
Bram Moolenaar 2005-06-22 22:37:09 +00:00
parent 30abd28f16
commit 6ad01d6077
2 changed files with 17 additions and 21 deletions

View File

@ -1,17 +1,13 @@
" Vim compiler file " Vim compiler file
" Compiler: Miscrosoft Visual C " Compiler: Miscrosoft Visual C
" Maintainer: Bram Moolenaar <Bram@vim.org> " Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2004 Mar 19 " Last Change: 2005 Jun 22
if exists("current_compiler") if exists("current_compiler")
finish finish
endif endif
let current_compiler = "msvc" 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. " The errorformat for MSVC is the default.
CompilerSet errorformat& setlocal errorformat&
CompilerSet makeprg=nmake setlocal makeprg=nmake

View File

@ -99,25 +99,25 @@ PLANNED FOR VERSION 7.0:
- Add SPELLCHECKER, with support for many languages. - Add SPELLCHECKER, with support for many languages.
- Spell checking code todo's: - Spell checking code todo's:
- Code for making suggestions: - Code for making suggestions:
- ":mkspell" runs out of memory for Polish with utf-8. - Hebrew: also use prefixes for suggestions. See message from
- When 'spellfile' directory doesn't exist, ask user to create it? Kaminsky (June 20) for ideas.
- When 'spelllang' has more than one language only .add file of - When "tn" has been marked as bad word it's sometimes still used
first is used? for suggestions. Depends on the order.
- Aspell has the "special" character, useful? - Suggestions for "t he": works well when 'spellsuggest' is "fast",
- Can "the the" be added as a bad word? not when it's "best" or "double". Sound of "the" is "@", for "t
Add BAD item in .aff file, set WF_BANNED flag. 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 - Simple and fast sound-a-like: mapping list for first char and rest
vowel as first char: * vowel as first char: *
remove other vowels remove other vowels
- How about words that are split over two lines? E.g., "et al.". - When 'spellfile' directory doesn't exist, ask user to create it?
- When putting map string in .spl file check for duplicate chars. - When 'spelllang' has more than one language only .add file of
- Hebrew: also use prefixes for suggestions. See message from first is used?
Kaminsky (June 20) for ideas.
- The sound-folding doesn't work for multi-byte characters. It's
very slow too.
- Also put list of word characters in word list file. Otherwise the - Also put list of word characters in word list file. Otherwise the
one for Italian may differ from the one used for English. 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) Convention: use en_US (language_region) and en-rare (language-field)
Add hl groups to 'spelllang'? Add hl groups to 'spelllang'?
:set spelllang=en_us,en-rare/SpellRare,en-math/SpellMath :set spelllang=en_us,en-rare/SpellRare,en-math/SpellMath