comparison runtime/doc/editing.txt @ 25364:af5c4fabcf40 v8.2.3219

patch 8.2.3219: :find searches non-existing directories Commit: https://github.com/vim/vim/commit/7a4ca32175bef0f9a177052796bd9addd10dc218 Author: Christian Brabandt <cb@256bit.org> Date: Sun Jul 25 15:08:05 2021 +0200 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 #8612, closes #8533)
author Bram Moolenaar <Bram@vim.org>
date Sun, 25 Jul 2021 15:15:04 +0200
parents e69e7133c9cf
children bdda48f01a68
comparison
equal deleted inserted replaced
25363:3ec88da38ae2 25364:af5c4fabcf40
1747 < and then search for a file with |gf| the file is searched in: > 1747 < and then search for a file with |gf| the file is searched in: >
1748 /u/user_x/work/release/include 1748 /u/user_x/work/release/include
1749 /u/user_x/work/include 1749 /u/user_x/work/include
1750 /u/user_x/include 1750 /u/user_x/include
1751 1751
1752 < Note: If your 'path' setting includes an non-existing directory, Vim will
1753 skip the non-existing directory, but continues searching in the parent of
1754 the non-existing directory if upwards searching is used. E.g. when
1755 searching "../include" and that doesn't exist, and upward searching is
1756 used, also searches in "..".
1757
1752 3) Combined up/downward search: 1758 3) Combined up/downward search:
1753 If Vim's current path is /u/user_x/work/release and you do > 1759 If Vim's current path is /u/user_x/work/release and you do >
1754 set path=**;/u/user_x 1760 set path=**;/u/user_x
1755 < and then search for a file with |gf| the file is searched in: > 1761 < and then search for a file with |gf| the file is searched in: >
1756 /u/user_x/work/release/** 1762 /u/user_x/work/release/**