1
- *editing.txt* For Vim version 9.1. Last change: 2024 Apr 12
1
+ *editing.txt* For Vim version 9.1. Last change: 2024 Jul 10
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1804,7 +1804,7 @@ There are three different types of searching:
1804
1804
stop-directories are appended to the path (for the 'path' option) or to
1805
1805
the filename (for the 'tags' option) with a ';'. If you want several
1806
1806
stop-directories separate them with ';'. If you want no stop-directory
1807
- ("search upward till the root directory) just use ';'. >
1807
+ ("search upward till the root directory" ) just use ';'. >
1808
1808
/usr/include/sys;/usr
1809
1809
< will search in: >
1810
1810
/usr/include/sys
@@ -1817,7 +1817,7 @@ There are three different types of searching:
1817
1817
1818
1818
If Vim's current path is /u/user_x/work/release and you do >
1819
1819
:set path=include;/u/user_x
1820
- < and then search for a file with | gf | the file is searched in: >
1820
+ < and then search for a file with | gf | the file is searched in: >
1821
1821
/u/user_x/work/release/include
1822
1822
/u/user_x/work/include
1823
1823
/u/user_x/include
@@ -1829,7 +1829,7 @@ There are three different types of searching:
1829
1829
3) Combined up/downward search:
1830
1830
If Vim's current path is /u/user_x/work/release and you do >
1831
1831
set path=**;/u/user_x
1832
- < and then search for a file with | gf | the file is searched in: >
1832
+ < and then search for a file with | gf | the file is searched in: >
1833
1833
/u/user_x/work/release/**
1834
1834
/u/user_x/work/**
1835
1835
/u/user_x/**
@@ -1841,10 +1841,10 @@ There are three different types of searching:
1841
1841
1842
1842
In the above example you might want to set path to: >
1843
1843
:set path=**,/u/user_x/**
1844
- < This searches:
1845
- /u/user_x/work/release/** ~
1846
- /u/user_x/** ~
1847
- This searches the same directories, but in a different order.
1844
+ < This searches: >
1845
+ /u/user_x/work/release/**
1846
+ /u/user_x/**
1847
+ < This searches the same directories, but in a different order.
1848
1848
1849
1849
Note that completion for ":find", ":sfind", and ":tabfind" commands do not
1850
1850
currently work with 'path' items that contain a URL or use the double star
0 commit comments