Mercurial > vim
annotate runtime/tools/vimspell.txt @ 34329:a059fc613d55 v9.1.0098
patch 9.1.0098: CompletionChanged not triggered when new leader added without matches
Commit: https://github.com/vim/vim/commit/0d3c0a66a39570cbc52b9536604c39e324b989b3
Author: glepnir <glephunter@gmail.com>
Date: Sun Feb 11 17:52:40 2024 +0100
patch 9.1.0098: CompletionChanged not triggered when new leader added without matches
Problem: CompletionChanged not triggered when new leader added causing
no matching item in the completion menu
Solution: When completion is active but no items matched still trigger
CompletChanged event
(glepnir)
closes: #13982
Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 11 Feb 2024 18:00:03 +0100 |
parents | 3fc0f57ecb91 |
children |
rev | line source |
---|---|
7 | 1 vimspell.sh |
2 =========== | |
3 | |
4 This is a simple script to spell check a file and generate the syntax | |
5 statements necessary to highlight the errors in vim. It is based on a | |
6 similar program by Krishna Gadepalli <krishna@stdavids.picker.com>. | |
7 | |
8 To use this script, first place it in a directory in your path. Next, | |
9 you should add some convenient key mappings. I use the following (in | |
10 .vimrc): | |
11 | |
12 noremap <F8> :so `vimspell.sh %`<CR><CR> | |
13 noremap <F7> :syntax clear SpellErrors<CR> | |
14 | |
15 This program requires the old Unix "spell" command. On my Debian | |
16 system, "spell" is a wrapper around "ispell". For better security, | |
17 you should uncomment the line in the script that uses "tempfile" to | |
18 create a temporary file. As all systems don't have "tempfile" the | |
19 insecure "pid method" is used. | |
20 | |
21 | |
22 Neil Schemenauer <nascheme@ucalgary.ca> |