diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2021-10-16 18:40:57 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2021-10-23 22:30:50 +0200 |
commit | cbec765915a8a76e86ac79dde8eeae663b019882 (patch) | |
tree | 9d626c255ef9e827d3169672a8127995e8289da1 /src/nvim/buffer_defs.h | |
parent | aa4f0879e35c43b186cf51c50f28847dd2df256c (diff) | |
download | rneovim-cbec765915a8a76e86ac79dde8eeae663b019882.tar.gz rneovim-cbec765915a8a76e86ac79dde8eeae663b019882.tar.bz2 rneovim-cbec765915a8a76e86ac79dde8eeae663b019882.zip |
vim-patch:8.2.3520: cannot define a function for thesaurus completion
Problem: Cannot define a function for thesaurus completion.
Solution: Add 'thesaurusfunc'. (Yegappan Lakshmanan, closes vim/vim#8987,
closes 8950)
https://github.com/vim/vim/commit/160e994d768d03a3c826b58115cde94df8fce607
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 19b0a3c5c6..db12942bbd 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -698,6 +698,7 @@ struct file_buffer { #endif char_u *b_p_cfu; ///< 'completefunc' char_u *b_p_ofu; ///< 'omnifunc' + char_u *b_p_thsfu; ///< 'thesaurusfunc' char_u *b_p_tfu; ///< 'tagfunc' int b_p_eol; ///< 'endofline' int b_p_fixeol; ///< 'fixendofline' |