Hi all,
Since patch 7.3.237, completion for the :compiler command has been
completing colorschemes instead. Attached patch fixes this.
Thanks,
--
James
GPG Key: 1024D/61326D40 2003-09-02 James Vega <[email protected]>
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff --git a/src/ex_getln.c b/src/ex_getln.c
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4546,7 +4546,7 @@
}
if (xp->xp_context == EXPAND_COMPILER)
{
- char *directories[] = {"colors", NULL};
+ char *directories[] = {"compiler", NULL};
return ExpandRTDir(pat, num_file, file, directories);
}
if (xp->xp_context == EXPAND_OWNSYNTAX)