My wishlist for vim-8.0:
- being able to open very large files quickly and
without using too much memory. This could possibly
be achieved by not loading the entire file immediately.
File could be loaded lazily when required.
- define spelling checker language for different
part of the file (probably using syntax file).
In the following example, I would like to
let the spelling checker know that msgid
strings are be English and msgstr are in
French.
msgid "Any authenticated user"
msgstr "Tout utilisateur authentifié"
- option to ignore accent differences when searching
for strings (a bit like ":set ignorecase")
ex: searching for "cafe" could find "café"
Thanks
-- Dominique