1- *eval.txt* For Vim version 8.2. Last change: 2020 Jun 14
1+ *eval.txt* For Vim version 8.2. Last change: 2020 Jun 17
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3679,7 +3679,7 @@ complete_info([{what}])
36793679 "function" User defined completion |i_CTRL-X_CTRL-U|
36803680 "omni" Omni completion |i_CTRL-X_CTRL-O|
36813681 "spell" Spelling suggestions |i_CTRL-X_s|
3682- "eval" |complete()| completion
3682+ "eval" |complete()| completion
36833683 "unknown" Other internal modes
36843684
36853685 If the optional {what} list argument is supplied, then only
@@ -4548,7 +4548,7 @@ flatten({list} [, {maxdepth}]) *flatten()*
45484548 a very large number.
45494549 The {list} is changed in place, make a copy first if you do
45504550 not want that.
4551- *E900*
4551+ *E900*
45524552 {maxdepth} means how deep in nested lists changes are made.
45534553 {list} is not modified when {maxdepth} is 0.
45544554 {maxdepth} must be positive number.
@@ -5175,7 +5175,7 @@ getcompletion({pat}, {type} [, {filtered}]) *getcompletion()*
51755175 highlight highlight groups
51765176 history :history suboptions
51775177 locale locale names (as output of locale -a)
5178- mapclear buffer argument
5178+ mapclear buffer argument
51795179 mapping mapping name
51805180 menu menus
51815181 messages |:messages| suboptions
@@ -5201,7 +5201,7 @@ getcompletion({pat}, {type} [, {filtered}]) *getcompletion()*
52015201 If {type} is "cmdline", then the |cmdline-completion| result is
52025202 returned. For example, to complete the possible values after
52035203 a ":call" command: >
5204- echo getcompletion('call ', 'cmdline')
5204+ echo getcompletion('call ', 'cmdline')
52055205<
52065206 If there are no matches, an empty list is returned. An
52075207 invalid value for {type} produces an error.
@@ -5782,8 +5782,8 @@ getwininfo([{winid}]) *getwininfo()*
57825782 Returns information about windows as a List with Dictionaries.
57835783
57845784 If {winid} is given Information about the window with that ID
5785- is returned. If the window does not exist the result is an
5786- empty list.
5785+ is returned, as a List with one item. If the window does not
5786+ exist the result is an empty list.
57875787
57885788 Without {winid} information about all the windows in all the
57895789 tab pages is returned.
@@ -8618,14 +8618,14 @@ searchcount([{options}]) *searchcount()*
86188618 if result.total > result.maxcount &&
86198619 \ result.current > result.maxcount
86208620 return printf(' /%s [>%d/>%d]', @/,
8621- \ result.current, result.total)
8621+ \ result.current, result.total)
86228622 elseif result.total > result.maxcount
86238623 return printf(' /%s [%d/>%d]', @/,
8624- \ result.current, result.total)
8624+ \ result.current, result.total)
86258625 endif
86268626 endif
86278627 return printf(' /%s [%d/%d]', @/,
8628- \ result.current, result.total)
8628+ \ result.current, result.total)
86298629 endfunction
86308630 let &statusline .= '%{LastSearchCount()}'
86318631
@@ -9398,7 +9398,9 @@ simplify({filename}) *simplify()*
93989398 Unix) are not resolved. If the first path component in
93999399 {filename} designates the current directory, this will be
94009400 valid for the result as well. A trailing path separator is
9401- not removed either.
9401+ not removed either. On Unix "//path" is unchanged, but
9402+ "///path" is simplified to "/path" (this follows the Posix
9403+ standard).
94029404 Example: >
94039405 simplify("./dir/.././/file/") == "./file/"
94049406< Note: The combination "dir/.." is only removed if "dir" is
@@ -9708,7 +9710,7 @@ state([{what}]) *state()*
97089710 m halfway a mapping, :normal command, feedkeys() or
97099711 stuffed command
97109712 o operator pending or waiting for a command argument,
9711- e.g. after |f|
9713+ e.g. after |f|
97129714 a Insert mode autocomplete active
97139715 x executing an autocommand
97149716 w blocked on waiting, e.g. ch_evalexpr(), ch_read() and
@@ -10462,9 +10464,9 @@ terminalprops() *terminalprops()*
1046210464 If the |+termresponse| feature is missing then the result is
1046310465 an empty dictionary.
1046410466
10465- If "cursor_style" is 'y' then |t_RS| will be send to request the
10467+ If "cursor_style" is 'y' then |t_RS| will be sent to request the
1046610468 current cursor style.
10467- If "cursor_blink_mode" is 'y' then |t_RC| will be send to
10469+ If "cursor_blink_mode" is 'y' then |t_RC| will be sent to
1046810470 request the cursor blink status.
1046910471 "cursor_style" and "cursor_blink_mode" are also set if |t_u7|
1047010472 is not empty, Vim will detect the working of sending |t_RS|
@@ -10928,7 +10930,7 @@ win_screenpos({nr}) *win_screenpos()*
1092810930 GetWinid()->win_screenpos()
1092910931<
1093010932win_splitmove({nr}, {target} [, {options}]) *win_splitmove()*
10931- Move the window {nr} to a new split of the window {target}.
10933+ Move the window {nr} to a new split of the window {target}.
1093210934 This is similar to moving to {target}, creating a new window
1093310935 using |:split| but having the same contents as window {nr}, and
1093410936 then closing {nr}.
0 commit comments