summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@gmail.com>2021-07-03 19:27:37 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-03 19:27:37 +0200
commit74509239df107b04abe4f30ada12109629c85939 (patch)
tree3f74209ca0c5646a569d69c9fb6e05ee9427dc2f /runtime
parente28d9b3bd4de2c7288add83ec35dc001ba280617 (diff)
patch 8.2.3092: Vim9: builtin function test fails without +channel featurev8.2.3092
Problem: Vim9: builtin function test fails without the +channel feature. Solution: Check the +channel feature is supported. (Dominique Pellé, closes #8507)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 2eceece64b..401f055f7d 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -8219,6 +8219,8 @@ prompt_getprompt({buf}) *prompt_getprompt()*
Can also be used as a |method|: >
GetBuffer()->prompt_getprompt()
+< {only available when compiled with the |+channel| feature}
+
prompt_setcallback({buf}, {expr}) *prompt_setcallback()*
Set prompt callback for buffer {buf} to {expr}. When {expr}
@@ -8252,6 +8254,7 @@ prompt_setcallback({buf}, {expr}) *prompt_setcallback()*
< Can also be used as a |method|: >
GetBuffer()->prompt_setcallback(callback)
+< {only available when compiled with the |+channel| feature}
prompt_setinterrupt({buf}, {expr}) *prompt_setinterrupt()*
Set a callback for buffer {buf} to {expr}. When {expr} is an
@@ -8265,6 +8268,8 @@ prompt_setinterrupt({buf}, {expr}) *prompt_setinterrupt()*
Can also be used as a |method|: >
GetBuffer()->prompt_setinterrupt(callback)
+< {only available when compiled with the |+channel| feature}
+
prompt_setprompt({buf}, {text}) *prompt_setprompt()*
Set prompt for buffer {buf} to {text}. You most likely want
{text} to end in a space.
@@ -8275,6 +8280,8 @@ prompt_setprompt({buf}, {text}) *prompt_setprompt()*
Can also be used as a |method|: >
GetBuffer()->prompt_setprompt('command: ')
+< {only available when compiled with the |+channel| feature}
+
prop_ functions are documented here: |text-prop-functions|
pum_getpos() *pum_getpos()*