summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-28 22:29:10 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-28 22:29:10 +0200
commit162bd9156413218784cf4c362bc8d64d529f21fe (patch)
tree2e78c1446b4a71fe7c0ecb7f2f881c58beffbc5a /runtime
parent8e46927a32f8a9b94351962304ae4d827e5b46ff (diff)
Improvements for ":find" completion. (Nazri Ramliy)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/editing.txt15
-rw-r--r--runtime/doc/todo.txt14
2 files changed, 15 insertions, 14 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index 73a8ea49da..6ae67a556f 100644
--- 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 @@ There are three different types of searching:
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:
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 469fc4317a..743eaf7362 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -30,22 +30,20 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Patch for :find completion. (Nazri Ramliy, 2010 Jul 27, and leak fix)
-And patch for Windows, Jul 28.
-And fix for patch, Jul 28.
+Patch for :filetype completion. (Dominique Pelle, Jul 28)
Windows 7: "Open with..." menu starts Vim without a file.
Windows 7: installing Vim again doesn't find the previously installed Vim.
-ftplugin/mupad.vim should not source AppendMatchGroup.vim, it should use an
-autoload function.
-Same for indent/GenericIndent.vim
-
Move more common code from if_python.c and if_python3.c to if_py_both.h
Add filetype completion to user commands. (Christian Brabandt, 2010 Jul 26)
-But call it "filetype" instead of "syntax".
+But call it "filetype" instead of "syntax"?
+
+ftplugin/mupad.vim should not source AppendMatchGroup.vim, it should use an
+autoload function.
+Same for indent/GenericIndent.vim
Before release 7.3:
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)