Bram,
here is a patch for issue 253.
Best,
Christian
--
Wie man sein Kind nicht nennen sollte:
E. Ruption
--
--
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
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/eval.c b/src/eval.c
--- a/src/eval.c
+++ b/src/eval.c
@@ -3368,7 +3368,7 @@ set_context_for_expression(xp, arg, cmdi
got_eq = TRUE;
xp->xp_context = EXPAND_EXPRESSION;
}
- else if (c == '<'
+ else if ((c == '<' || c == '#')
&& xp->xp_context == EXPAND_FUNCTIONS
&& vim_strchr(xp->xp_pattern, '(') == NULL)
{