diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-09-30 16:23:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-09-30 16:23:32 +0200 |
commit | a627c96182e4f442909c3450d359aa4f59946fde (patch) | |
tree | a32820e6d7a1dd1852dc06e57db5c9cd7d037871 /src/ex_getln.c | |
parent | 98a22f4a639f467977a457d0f0bcb3eb7a1424c5 (diff) | |
download | vim-git-a627c96182e4f442909c3450d359aa4f59946fde.tar.gz |
updated for version 7.3.324v7.3.324
Problem: Completion for ":compiler" shows color scheme names.
Solution: Fix the directory name. (James Vega)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 8239c0c87..da03a0494 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4546,7 +4546,7 @@ ExpandFromContext(xp, pat, num_file, file, options) } 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) |