1- *builtin.txt* For Vim version 9.0. Last change: 2022 Oct 21
1+ *builtin.txt* For Vim version 9.0. Last change: 2022 Nov 09
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1321,7 +1321,8 @@ bufwinid({buf}) *bufwinid()*
13211321
13221322 echo "A window containing buffer 1 is " .. (bufwinid(1))
13231323<
1324- Only deals with the current tab page.
1324+ Only deals with the current tab page. See | win_findbuf() | for
1325+ finding more.
13251326
13261327 Can also be used as a | method | : >
13271328 FindBuffer()->bufwinid()
@@ -1589,7 +1590,7 @@ col({expr}) The result is a Number, which is the byte index of the column
15891590 column is one higher if the cursor is after the end of the
15901591 line. Also, when using a <Cmd> mapping the cursor isn't
15911592 moved, this can be used to obtain the column in Insert mode: >
1592- :imap <F2> <Cmd>echo col(".")<CR>
1593+ :imap <F2> <Cmd>echowin col(".")<CR>
15931594
15941595< Can also be used as a | method | : >
15951596 GetPos()->col()
@@ -2773,7 +2774,7 @@ flattennew({list} [, {maxdepth}]) *flattennew()*
27732774float2nr({expr} ) *float2nr()*
27742775 Convert {expr} to a Number by omitting the part after the
27752776 decimal point.
2776- {expr} must evaluate to a | Float | or a Number.
2777+ {expr} must evaluate to a | Float | or a | Number | .
27772778 Returns 0 if {expr} is not a | Float | or a | Number | .
27782779 When the value of {expr} is out of range for a | Number | the
27792780 result is truncated to 0x7fffffff or -0x7fffffff (or when
@@ -10204,6 +10205,7 @@ win_move_separator({nr}, {offset}) *win_move_separator()*
1020410205 FALSE otherwise.
1020510206 This will fail for the rightmost window and a full-width
1020610207 window, since it has no separator on the right.
10208+ Only works for the current tab page. *E1308*
1020710209
1020810210 Can also be used as a | method | : >
1020910211 GetWinnr()->win_move_separator(offset)
@@ -10218,6 +10220,7 @@ win_move_statusline({nr}, {offset}) *win_move_statusline()*
1021810220 movement may be smaller than specified (e.g., as a consequence
1021910221 of maintaining 'winminheight' ). Returns TRUE if the window can
1022010222 be found and FALSE otherwise.
10223+ Only works for the current tab page.
1022110224
1022210225 Can also be used as a | method | : >
1022310226 GetWinnr()->win_move_statusline(offset)
0 commit comments