diff runtime/doc/editing.txt @ 2429:7ce8b24450dc vim73

Improvements for ":find" completion. (Nazri Ramliy)
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Jul 2010 22:29:10 +0200
parents f766a1c87f69
children 150b5dbccff9
line wrap: on
line diff
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt*   For Vim version 7.3c.  Last change: 2010 Jul 21
+*editing.txt*   For Vim version 7.3c.  Last change: 2010 Jul 28
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1622,10 +1622,13 @@ 3) Combined up/downward search:
 
    In the above example you might want to set path to: >
 	:set path=**,/u/user_x/**
-<   This searches: >
-	/u/user_x/work/release/**
-	/u/user_x/**
-<   This searches the same directories, but in a different order.
+<  This searches:
+	/u/user_x/work/release/** ~
+	/u/user_x/** ~
+   This searches the same directories, but in a different order.
 
+   Note that completion for ":find", ":sfind", and ":tabfind" commands do not
+   currently work with 'path' items that contain a url or use the double star
+   (/usr/**2) or upward search (;) notations. >
 
  vim:tw=78:ts=8:ft=help:norl: