aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-08 00:23:48 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-06-08 00:23:48 -0400
commit7e74ba4108240bd20f4ee7116c407def0d9f4458 (patch)
tree843ac76d6cf8235e7ecaf0dfa3b0fcafcad56e7d /runtime/doc/eval.txt
parent00fc216e2be1f3a32fd31fb08a2ecdc66acd0543 (diff)
parent24a329b53aa3be03ed79768cca04d63d6bb93891 (diff)
downloadrneovim-7e74ba4108240bd20f4ee7116c407def0d9f4458.tar.gz
rneovim-7e74ba4108240bd20f4ee7116c407def0d9f4458.tar.bz2
rneovim-7e74ba4108240bd20f4ee7116c407def0d9f4458.zip
Merge pull request #4804 from brcolow/vim-7.4.1150
vim-patch:7.4.{1150,1151}
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 1ddbf37626..219327fd77 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -3174,6 +3174,11 @@ feedkeys({string} [, {mode}]) *feedkeys()*
if coming from a mapping. This matters for undo,
opening folds, etc.
'i' Insert the string instead of appending (see above).
+ 'x' Execute commands until typeahead is empty. This is
+ similar to using ":normal!". You can call feedkeys()
+ several times without 'x' and then one time with 'x'
+ (possibly with an empty {string}) to execute all the
+ typeahead.
Return value is always 0.
filereadable({file}) *filereadable()*