diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-06-27 10:23:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-27 10:23:09 +0200 |
| commit | f3c8f3e5d40e7c489492ffe3b8043705fcf40e78 (patch) | |
| tree | 0f87c1a72999beb0e88849403d4065b234d4a7b1 /runtime/doc/eval.txt | |
| parent | f10489d9c299b43cf9b942aedf11094a33125975 (diff) | |
| download | rneovim-f3c8f3e5d40e7c489492ffe3b8043705fcf40e78.tar.gz rneovim-f3c8f3e5d40e7c489492ffe3b8043705fcf40e78.tar.bz2 rneovim-f3c8f3e5d40e7c489492ffe3b8043705fcf40e78.zip | |
vim-patch:partial:8a3b805c6c9c (#19104)
Update runtime files
https://github.com/vim/vim/commit/8a3b805c6c9cae341d560df9c3567ebbe42a7404
skip builtin.txt (needs 8.2.4838)
skip message.txt (whitespace changes)
Diffstat (limited to 'runtime/doc/eval.txt')
| -rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 71f5ad4536..17af40bdb9 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -119,7 +119,7 @@ You will not get an error if you try to change the type of a variable. 1.2 Function references ~ - *Funcref* *E695* *E718* + *Funcref* *E695* *E718* A Funcref variable is obtained with the |function()| function, the |funcref()| function or created with the lambda expression |expr-lambda|. It can be used in an expression in the place of a function name, before the parenthesis @@ -1123,7 +1123,7 @@ Generally, if a |List| index is equal to or higher than the length of the error. -expr8[expr1a : expr1b] substring or sublist *expr-[:]* +expr8[expr1a : expr1b] substring or |sublist| *expr-[:]* *substring* If expr8 is a String this results in the substring with the bytes or characters from expr1a to and including expr1b. expr8 is used as a String, |