comparison runtime/doc/usr_03.txt @ 19574:d4deb2e50667

Update runtime files Commit: https://github.com/vim/vim/commit/eab6dff19f387469a200011bc6cf3508f5e43a4a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 1 19:06:45 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Mar 2020 19:15:04 +0100
parents af69c9335223
children d4c7b3e9cd17
comparison
equal deleted inserted replaced
19573:9d0db06b6ad2 19574:d4deb2e50667
1 *usr_03.txt* For Vim version 8.2. Last change: 2019 Nov 21 1 *usr_03.txt* For Vim version 8.2. Last change: 2020 Feb 29
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Moving around 5 Moving around
6 6
344 344
345 /#include 345 /#include
346 346
347 And then type "n" several times. You will move to each #include in the text. 347 And then type "n" several times. You will move to each #include in the text.
348 You can also use a count if you know which match you want. Thus "3n" finds 348 You can also use a count if you know which match you want. Thus "3n" finds
349 the third match. Using a count with "/" doesn't work. 349 the third match. You can also use a count with "/": "4/the" goes to the
350 fourth match of "the".
350 351
351 The "?" command works like "/" but searches backwards: > 352 The "?" command works like "/" but searches backwards: >
352 353
353 ?word 354 ?word
354 355