diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-11-07 12:12:04 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-07 14:25:32 +0800 |
commit | 2ed2c04aa518fb2591497e9a5ebe9cc32d8894a8 (patch) | |
tree | 0ae5f982feae83a659b83e8a9272a3cab778252b | |
parent | be19990f30ed004f7f363f79ed05f23039bdfd07 (diff) | |
download | rneovim-2ed2c04aa518fb2591497e9a5ebe9cc32d8894a8.tar.gz rneovim-2ed2c04aa518fb2591497e9a5ebe9cc32d8894a8.tar.bz2 rneovim-2ed2c04aa518fb2591497e9a5ebe9cc32d8894a8.zip |
docs(options): remove mentions of 'imactivatefunc' and 'imstatusfunc'
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b18d40e56f..4a277c146f 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -313,10 +313,10 @@ Note: In the future more global options can be made |global-local|. Using *option-value-function* -Some options ('completefunc', 'imactivatefunc', 'imstatusfunc', 'omnifunc', -'operatorfunc', 'quickfixtextfunc', 'tagfunc' and 'thesaurusfunc') are set to -a function name or a function reference or a lambda function. When using a -lambda it will be converted to the name, e.g. "<lambda>123". Examples: +Some options ('completefunc', 'omnifunc', 'operatorfunc', 'quickfixtextfunc', +'tagfunc' and 'thesaurusfunc') are set to a function name or a function +reference or a lambda function. When using a lambda it will be converted to +the name, e.g. "<lambda>123". Examples: > set opfunc=MyOpFunc set opfunc=function('MyOpFunc') |