diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-30 14:53:56 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-02-01 17:08:40 +0800 |
commit | 7d72076a6f3bd3cb85100c94bfeb7a70de345c3b (patch) | |
tree | 8b6f22f2fa203841f910ea38745e4c36ad77af9f /runtime | |
parent | a562b5771ea91becd0a469378ec852feaf50d2d0 (diff) | |
download | rneovim-7d72076a6f3bd3cb85100c94bfeb7a70de345c3b.tar.gz rneovim-7d72076a6f3bd3cb85100c94bfeb7a70de345c3b.tar.bz2 rneovim-7d72076a6f3bd3cb85100c94bfeb7a70de345c3b.zip |
vim-patch:8.2.3219: :find searches non-existing directories
Problem: :find searches non-existing directories.
Solution: Check the path is not "..". Update help. (Christian Brabandt,
closes vim/vim#8612, closes vim/vim#8533)
https://github.com/vim/vim/commit/7a4ca32175bef0f9a177052796bd9addd10dc218
Change STRNCAT to STRLCAT as clint doesn't like the former.
Include a typo fix from https://github.com/vim/vim/commit/2f0936cb9a2eb026acac03e6a8fd0b2a5d97508b#diff-7e9292cae1f2ba70dd5b17d2d162693a91044ada6ac99e9c3e8917f32878c097
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/editing.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt index 44987f3b7b..3d0287b0cd 100644 --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -1569,6 +1569,12 @@ There are three different types of searching: /u/user_x/work/include /u/user_x/include +< Note: If your 'path' setting includes a non-existing directory, Vim will + skip the non-existing directory, but continues searching in the parent of + the non-existing directory if upwards searching is used. E.g. when + searching "../include" and that doesn't exist, and upward searching is + used, also searches in "..". + 3) Combined up/downward search: If Vim's current path is /u/user_x/work/release and you do > set path=**;/u/user_x |