Mercurial > vim
annotate src/proto/spellsuggest.pro @ 22316:d275371fd1e7 v8.2.1707
patch 8.2.1707: small inconsitency in highlight test
Commit: https://github.com/vim/vim/commit/2bbada811625ee53c7bcdf689dbf409e9975ea8f
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 18 21:55:26 2020 +0200
patch 8.2.1707: small inconsitency in highlight test
Problem: Small inconsitency in highlight test.
Solution: Use one argument for :execute. (Antony Scriven, https://github.com/vim/vim/issues/6975)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 18 Sep 2020 22:00:03 +0200 |
parents | 6e53d83e021d |
children |
rev | line source |
---|---|
18172
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* spellsuggest.c */ |
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 int spell_check_sps(void); |
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 void spell_suggest(int count); |
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 void spell_suggest_list(garray_T *gap, char_u *word, int maxcount, int need_cap, int interactive); |
6e53d83e021d
patch 8.1.2081: the spell.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 /* vim: set ft=c : */ |