comparison runtime/doc/builtin.txt @ 32061:b2412874362f

Update runtime files Commit: https://github.com/vim/vim/commit/dd60c365cd2630794be84d63c4fe287124a30b97 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 27 15:49:53 2023 +0000 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Feb 2023 17:00:08 +0100
parents a9b5ffbc0428
children ec0d5bd9083c
comparison
equal deleted inserted replaced
32060:038d32f87ebf 32061:b2412874362f
1 *builtin.txt* For Vim version 9.0. Last change: 2023 Feb 14 1 *builtin.txt* For Vim version 9.0. Last change: 2023 Feb 27
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
2567 2567
2568 2568
2569 extendnew({expr1}, {expr2} [, {expr3}]) *extendnew()* 2569 extendnew({expr1}, {expr2} [, {expr3}]) *extendnew()*
2570 Like |extend()| but instead of adding items to {expr1} a new 2570 Like |extend()| but instead of adding items to {expr1} a new
2571 List or Dictionary is created and returned. {expr1} remains 2571 List or Dictionary is created and returned. {expr1} remains
2572 unchanged. Items can still be changed by {expr2}, if you 2572 unchanged.
2573 don't want that use |deepcopy()| first.
2574 2573
2575 2574
2576 feedkeys({string} [, {mode}]) *feedkeys()* 2575 feedkeys({string} [, {mode}]) *feedkeys()*
2577 Characters in {string} are queued for processing as if they 2576 Characters in {string} are queued for processing as if they
2578 come from a mapping or were typed by the user. 2577 come from a mapping or were typed by the user.
9809 Create a timer and return the timer ID. 9808 Create a timer and return the timer ID.
9810 9809
9811 {time} is the waiting time in milliseconds. This is the 9810 {time} is the waiting time in milliseconds. This is the
9812 minimum time before invoking the callback. When the system is 9811 minimum time before invoking the callback. When the system is
9813 busy or Vim is not waiting for input the time will be longer. 9812 busy or Vim is not waiting for input the time will be longer.
9813 Zero can be used to execute the callback when Vim is back in
9814 the main loop.
9814 9815
9815 {callback} is the function to call. It can be the name of a 9816 {callback} is the function to call. It can be the name of a
9816 function or a |Funcref|. It is called with one argument, which 9817 function or a |Funcref|. It is called with one argument, which
9817 is the timer ID. The callback is only invoked when Vim is 9818 is the timer ID. The callback is only invoked when Vim is
9818 waiting for input. 9819 waiting for input.