diff src/screen.c @ 2382:3a5ededa240a vim73

Add the 'c' flag to 'concealcursor'.
author Bram Moolenaar <bram@vim.org>
date Sat, 24 Jul 2010 15:00:38 +0200
parents 17bbb52ae218
children 0371401d9d33
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -605,6 +605,8 @@ conceal_cursor_line(wp)
 	c = 'i';
     else if (State & NORMAL)
 	c = 'n';
+    else if (State & CMDLINE)
+	c = 'c';
     else
 	return FALSE;
     return vim_strchr(wp->w_p_cocu, c) != NULL;