aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-03 20:58:22 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-03 20:59:12 -0400
commita8071354e18261d6ad761b1f804bfe65094f69f5 (patch)
treebf1fafc5664f4e76845b7ed2be7f6584cf20bde4 /src
parentbd51a0cd04496684a4b85544193c7813f0443779 (diff)
downloadrneovim-a8071354e18261d6ad761b1f804bfe65094f69f5.tar.gz
rneovim-a8071354e18261d6ad761b1f804bfe65094f69f5.tar.bz2
rneovim-a8071354e18261d6ad761b1f804bfe65094f69f5.zip
vim-patch:8.0.0640: mismatch between help and actual message
Problem: Mismatch between help and actual message for ":syn conceal". Solution: Change the message to match the help. (Ken Takata) https://github.com/vim/vim/commit/83064068eaabf75a7d235b0eec561dccbcb96b31
Diffstat (limited to 'src')
-rw-r--r--src/nvim/syntax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index 53bfd161ca..98e457db18 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -3034,9 +3034,9 @@ static void syn_cmd_conceal(exarg_T *eap, int syncing)
next = skiptowhite(arg);
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;