summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-06-08 15:24:48 +0200
committerBram Moolenaar <Bram@vim.org>2013-06-08 15:24:48 +0200
commitcd9c46265e4a12cf716187bc8188c7399797f806 (patch)
tree0cc2bad99620cf39396dcb929d51225745588267 /src/ex_getln.c
parent87f764a891ff717cd84f361afa5e2220820431e3 (diff)
updated for version 7.3.1148v7.3.1148
Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 9fdb377126..6fe91488c2 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4674,6 +4674,9 @@ ExpandFromContext(xp, pat, num_file, file, options)
#ifdef FEAT_SYN_HL
{EXPAND_SYNTAX, get_syntax_name, TRUE, TRUE},
#endif
+#ifdef FEAT_PROFILE
+ {EXPAND_SYNTIME, get_syntime_arg, TRUE, TRUE},
+#endif
{EXPAND_HIGHLIGHT, get_highlight_name, TRUE, TRUE},
#ifdef FEAT_AUTOCMD
{EXPAND_EVENTS, get_event_name, TRUE, TRUE},