Hi,
`:help :syn-conceal-implicit` says:
> :sy[ntax] conceal
> Show either "syntax conceal on" or "syntax conceal off" (translated).
However the messages are actually "syn conceal on" and "syn conceal off".
I think they should be "syntax ..." as documented, and it is better for
consistency between "syntax spell" and "syntax case".
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3436,9 +3436,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int
if (*arg == NUL)
{
if (curwin->w_s->b_syn_conceal)
- MSG(_("syn conceal on"));
+ MSG(_("syntax conceal on"));
else
- MSG(_("syn conceal off"));
+ MSG(_("syntax conceal off"));
}
else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
curwin->w_s->b_syn_conceal = TRUE;
Regards,
Ken Takata
--
--
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.