diff src/ex_getln.c @ 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 0ca06a92adfb
children 98b9a6b9e7d5
line wrap: on
line diff
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -5033,6 +5033,12 @@ globpath(path, file, expand_options)
     {
 	/* Copy one item of the path to buf[] and concatenate the file name. */
 	copy_option_part(&path, buf, MAXPATHL, ",");
+	if (path_with_url(buf))
+	    continue;
+	/*
+	 * FIXME: should we proactively skip 'path' with limiter (/usr/ **N)
+	 * and upward search (;) notations, just like we did with url above?
+	 */
 	if (STRLEN(buf) + STRLEN(file) + 2 < MAXPATHL)
 	{
 	    add_pathsep(buf);