comparison runtime/doc/develop.txt @ 21991:bbca88cd13d5

Update runtime files. Commit: https://github.com/vim/vim/commit/207f009326c8f878defde0e594d7d9ed9860106e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 30 17:20:20 2020 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 30 Aug 2020 17:30:06 +0200
parents 1b345fb68ae3
children f8116058ca76
comparison
equal deleted inserted replaced
21990:8086857308b9 21991:bbca88cd13d5
1 *develop.txt* For Vim version 8.2. Last change: 2020 Jul 27 1 *develop.txt* For Vim version 8.2. Last change: 2020 Aug 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
471 When spell checking was going to be added to Vim a survey was done over the 471 When spell checking was going to be added to Vim a survey was done over the
472 available spell checking libraries and programs. Unfortunately, the result 472 available spell checking libraries and programs. Unfortunately, the result
473 was that none of them provided sufficient capabilities to be used as the spell 473 was that none of them provided sufficient capabilities to be used as the spell
474 checking engine in Vim, for various reasons: 474 checking engine in Vim, for various reasons:
475 475
476 - Missing support for multi-byte encodings. At least UTF-8 must be supported, 476 - Missing support for multibyte encodings. At least UTF-8 must be supported,
477 so that more than one language can be used in the same file. 477 so that more than one language can be used in the same file.
478 Doing on-the-fly conversion is not always possible (would require iconv 478 Doing on-the-fly conversion is not always possible (would require iconv
479 support). 479 support).
480 - For the programs and libraries: Using them as-is would require installing 480 - For the programs and libraries: Using them as-is would require installing
481 them separately from Vim. That's mostly not impossible, but a drawback. 481 them separately from Vim. That's mostly not impossible, but a drawback.