commit | a627c96182e4f442909c3450d359aa4f59946fde | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Sep 30 16:23:32 2011 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Sep 30 16:23:32 2011 +0200 |
tree | a32820e6d7a1dd1852dc06e57db5c9cd7d037871 | |
parent | 98a22f4a639f467977a457d0f0bcb3eb7a1424c5 [diff] [blame] |
updated for version 7.3.324 Problem: Completion for ":compiler" shows color scheme names. Solution: Fix the directory name. (James Vega)
diff --git a/src/ex_getln.c b/src/ex_getln.c index 8239c0c..da03a04 100644 --- 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)