aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-10-03 07:24:54 +0800
committerGitHub <noreply@github.com>2023-10-03 07:24:54 +0800
commit1101cfeb349453bc7220e68695bf60a0f96f3069 (patch)
tree1c9d4f465db17ebfdff92f7ebbdb417c1af9e7c9 /runtime
parente634222daded1e232f310f2d843079572cac9b88 (diff)
downloadrneovim-1101cfeb349453bc7220e68695bf60a0f96f3069.tar.gz
rneovim-1101cfeb349453bc7220e68695bf60a0f96f3069.tar.bz2
rneovim-1101cfeb349453bc7220e68695bf60a0f96f3069.zip
vim-patch:9.0.1972: win32: missing '**' expansion test (#25476)
Problem: win32: missing '**' expansion test (after v9.0.1947) Solution: Add test for MS-Windows win32: Add "**" test Vim supports "**" on MS-Windows. However, it is not tested by `Test_glob_extended_bash`. Unlike Unix, it doesn't use 'shell' and doesn't support {,} expansion. So, I added as a separate test. related: vim/vim#13205 closes: vim/vim#13250 https://github.com/vim/vim/commit/4a1ad5556423dca5f5b7ee39f143579e67569ae1 Co-authored-by: Ken Takata <kentkt@csc.jp>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/editing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index 6e7963c066..aef5276bb3 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -357,8 +357,8 @@ is to use "path\[[]abc]", this matches the file "path\[abc]".
*starstar-wildcard*
Expanding "**" is possible on Unix, Win32, macOS and a few other systems (but
-it may depend on your 'shell' setting. It's known to work correctly for zsh; for
-bash this requires at least bash version >= 4.X).
+it may depend on your 'shell' setting on Unix and macOS. It's known to work
+correctly for zsh; for bash this requires at least bash version >= 4.X).
This allows searching a directory tree. This goes up to 100 directories deep.
Note there are some commands where this works slightly differently, see
|file-searching|.