comparison runtime/doc/builtin.txt @ 30785:02b5d6f20db2 v9.0.0727

patch 9.0.0727: help in the repository differs from patched version too much Commit: https://github.com/vim/vim/commit/7c6cd443757348aa987eed87506549ab6b2079fe Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 11 21:54:04 2022 +0100 patch 9.0.0727: help in the repository differs from patched version too much Problem: Help in the repository differs from patched version too much. Solution: Make a patch for a few help files.
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Oct 2022 23:00:05 +0200
parents 71137f73c94d
children 3295247d97a5
comparison
equal deleted inserted replaced
30784:7e752660614b 30785:02b5d6f20db2
1 *builtin.txt* For Vim version 9.0. Last change: 2022 Sep 30 1 *builtin.txt* For Vim version 9.0. Last change: 2022 Oct 10
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1880 1880
1881 To position the cursor using the character count, use 1881 To position the cursor using the character count, use
1882 |setcursorcharpos()|. 1882 |setcursorcharpos()|.
1883 1883
1884 Does not change the jumplist. 1884 Does not change the jumplist.
1885 {lnum} is used like with |getline()|. 1885 {lnum} is used like with |getline()|, except that if {lnum} is
1886 zero, the cursor will stay in the current line.
1886 If {lnum} is greater than the number of lines in the buffer, 1887 If {lnum} is greater than the number of lines in the buffer,
1887 the cursor will be positioned at the last line in the buffer. 1888 the cursor will be positioned at the last line in the buffer.
1888 If {lnum} is zero, the cursor will stay in the current line.
1889 If {col} is greater than the number of bytes in the line, 1889 If {col} is greater than the number of bytes in the line,
1890 the cursor will be positioned at the last character in the 1890 the cursor will be positioned at the last character in the
1891 line. 1891 line.
1892 If {col} is zero, the cursor will stay in the current column. 1892 If {col} is zero, the cursor will stay in the current column.
1893 If {curswant} is given it is used to set the preferred column 1893 If {curswant} is given it is used to set the preferred column