1- *eval.txt* For Vim version 8.2. Last change: 2021 May 07
1+ *eval.txt* For Vim version 8.2. Last change: 2021 Jun 07
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2102,7 +2102,7 @@ v:null An empty String. Used to put "null" in JSON. See
21022102v:numbermax Maximum value of a number.
21032103
21042104 *v:numbermin* *numbermin-variable*
2105- v:numbermin Minimum value of a number (negative)
2105+ v:numbermin Minimum value of a number (negative).
21062106
21072107 *v:numbersize* *numbersize-variable*
21082108v:numbersize Number of bits in a Number. This is normally 64, but on some
@@ -2520,7 +2520,7 @@ char2nr({expr} [, {utf8}]) Number ASCII/UTF8 value of first char in {expr}
25202520charclass({string}) Number character class of {string}
25212521charcol({expr}) Number column number of cursor or mark
25222522charidx({string}, {idx} [, {countcc}])
2523- Number char index of byte {idx} in {string}
2523+ Number char index of byte {idx} in {string}
25242524chdir({dir}) String change current working directory
25252525cindent({lnum}) Number C indent for line {lnum}
25262526clearmatches([{win}]) none clear all matches
@@ -2541,7 +2541,7 @@ cscope_connection([{num}, {dbpath} [, {prepend}]])
25412541cursor({lnum}, {col} [, {off}])
25422542 Number move cursor to {lnum}, {col}, {off}
25432543cursor({list}) Number move cursor to position in {list}
2544- debugbreak({pid}) Number interrupt process being debugged
2544+ debugbreak({pid}) Number interrupt process being debugged
25452545deepcopy({expr} [, {noref}]) any make a full copy of {expr}
25462546delete({fname} [, {flags}]) Number delete the file or directory {fname}
25472547deletebufline({expr}, {first} [, {last}])
@@ -4963,7 +4963,7 @@ funcref({name} [, {arglist}] [, {dict}])
49634963 Can also be used as a |method|: >
49644964 GetFuncname()->funcref([arg])
49654965<
4966- *function()* *E700* *E922* *E923*
4966+ *function()* *partial * *E700* *E922* *E923*
49674967function({name} [, {arglist}] [, {dict}])
49684968 Return a |Funcref| variable that refers to function {name}.
49694969 {name} can be the name of a user defined function or an
@@ -5512,8 +5512,8 @@ getcurpos([{winid}])
55125512
55135513 Can also be used as a |method|: >
55145514 GetWinid()->getcurpos()
5515-
5516- < *getcursorcharpos()*
5515+ <
5516+ *getcursorcharpos()*
55175517getcursorcharpos([{winid}])
55185518 Same as |getcurpos()| but the column number in the returned
55195519 List is a character index instead of a byte index.
@@ -5522,8 +5522,8 @@ getcursorcharpos([{winid}])
55225522 With the cursor on '보' in line 3 with text "여보세요": >
55235523 getcursorcharpos() returns [0, 3, 2, 0, 3]
55245524 getcurpos() returns [0, 3, 4, 0, 3]
5525-
5526- < Can also be used as a |method|: >
5525+ <
5526+ Can also be used as a |method|: >
55275527 GetWinid()->getcursorcharpos()
55285528
55295529< *getcwd()*
@@ -5748,11 +5748,11 @@ getmarklist([{expr}]) *getmarklist()*
57485748 see |bufname()|.
57495749
57505750 Each item in the returned List is a |Dict| with the following:
5751- name - name of the mark prefixed by "'"
5752- pos - a |List| with the position of the mark:
5751+ mark name of the mark prefixed by "'"
5752+ pos a |List| with the position of the mark:
57535753 [bufnum, lnum, col, off]
5754- Refer to |getpos()| for more information.
5755- file - file name
5754+ Refer to |getpos()| for more information.
5755+ file file name
57565756
57575757 Refer to |getpos()| for getting information about a specific
57585758 mark.
@@ -5834,7 +5834,7 @@ getpos({expr}) Get the position for {expr}. For possible values of {expr}
58345834 '> is a large number.
58355835 The column number in the returned List is the byte position
58365836 within the line. To get the character position in the line,
5837- use |getcharpos()|
5837+ use |getcharpos()|.
58385838 The column number can be very large, e.g. 2147483647, in which
58395839 case it means "after the end of the line".
58405840 This can be used to save and restore the position of a mark: >
@@ -7649,7 +7649,7 @@ matchfuzzypos({list}, {str} [, {dict}]) *matchfuzzypos()*
76497649 Same as |matchfuzzy()|, but returns the list of matched
76507650 strings, the list of character positions where characters
76517651 in {str} matches and a list of matching scores. You can
7652- use |byteidx()|to convert a character position to a byte
7652+ use |byteidx()| to convert a character position to a byte
76537653 position.
76547654
76557655 If {str} matches multiple times in a string, then only the
@@ -9973,7 +9973,7 @@ sinh({expr}) *sinh()*
99739973 {only available when compiled with the |+float| feature}
99749974
99759975
9976- slice({expr}, {start} [, {end}]) *slice()*
9976+ slice({expr}, {start} [, {end}]) *slice()*
99779977 Similar to using a |slice| "expr[start : end]", but "end" is
99789978 used exclusive. And for a string the indexes are used as
99799979 character indexes instead of byte indexes, like in
0 commit comments