commit | ca8c9867c2e6112f17975d840b9551cd91287eb6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 24 15:00:38 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 24 15:00:38 2010 +0200 |
tree | 85eb0a7352c50cab2bd9076163845b017446b5b6 | |
parent | f691b84fba95ffc24ea6725a625aa958a24ccffb [diff] [blame] |
Add the 'c' flag to 'concealcursor'.
diff --git a/src/screen.c b/src/screen.c index 70805d5..1756fc0 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -605,6 +605,8 @@ 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;