diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-09-09 18:59:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 18:59:11 +0200 |
commit | 2fe95cb1adfa00e67ac8bd51197f003312b99132 (patch) | |
tree | afb524bff66ed8eb32b8df04afcda817fd0d0c13 /runtime/doc/eval.txt | |
parent | d80aac3b2a3ce4b25d4f12ff64b8c947eaf75826 (diff) | |
download | rneovim-2fe95cb1adfa00e67ac8bd51197f003312b99132.tar.gz rneovim-2fe95cb1adfa00e67ac8bd51197f003312b99132.tar.bz2 rneovim-2fe95cb1adfa00e67ac8bd51197f003312b99132.zip |
vim-patch:partial 2346a6378483 (#15599)
Update runtime files
https://github.com/vim/vim/commit/2346a6378483c9871016f9fc821ec5cbea638f13
omit doc/vim.man
omit doc/vim9.txt
omit doc/vimdiff.txt
omit doc/vimdiff.man
skip doc/eval.txt (missing patch 8.2.2324)
skip doc/help.txt (missing patch 8.2.2344)
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index e6405145cd..476254d22d 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1856,7 +1856,7 @@ v:null Special value used to put "null" in JSON and NIL in msgpack. v:numbermax Maximum value of a number. *v:numbermin* *numbermin-variable* -v:numbermin Minimum value of a number (negative) +v:numbermin Minimum value of a number (negative). *v:numbersize* *numbersize-variable* v:numbersize Number of bits in a Number. This is normally 64, but on some @@ -2149,7 +2149,7 @@ chanclose({id}[, {stream}]) Number Closes a channel or one of its streams chansend({id}, {data}) Number Writes {data} to channel char2nr({expr}[, {utf8}]) Number ASCII/UTF8 value of first char in {expr} charidx({string}, {idx} [, {countcc}]) - Number char index of byte {idx} in {string} + Number char index of byte {idx} in {string} cindent({lnum}) Number C indent for line {lnum} clearmatches([{win}]) none clear all matches col({expr}) Number column nr of cursor or mark @@ -4862,11 +4862,11 @@ getmarklist([{expr}]) *getmarklist()* see |bufname()|. Each item in the returned List is a |Dict| with the following: - name - name of the mark prefixed by "'" - pos - a |List| with the position of the mark: + mark name of the mark prefixed by "'" + pos a |List| with the position of the mark: [bufnum, lnum, col, off] - Refer to |getpos()| for more information. - file - file name + Refer to |getpos()| for more information. + file file name Refer to |getpos()| for getting information about a specific mark. |