| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.758 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.758 |
| Problem: When 'conceallevel' is 1 and quitting the command-line window with |
| CTRL-C the first character ':' is erased. |
| Solution: Reset 'conceallevel' in the command-line window. (Hirohito |
| Higashi) |
| Files: src/ex_getln.c |
| |
| |
| |
| |
| |
| *** 6611,6616 **** |
| --- 6611,6620 ---- |
| /* Don't execute autocommands while deleting the window. */ |
| block_autocmds(); |
| # endif |
| + # ifdef FEAT_CONCEAL |
| + /* Avoid command-line window first character being concealed. */ |
| + curwin->w_p_cole = 0; |
| + # endif |
| wp = curwin; |
| bp = curbuf; |
| win_goto(old_curwin); |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 758, |
| /**/ |
| |
| -- |
| You are not really successful until someone claims he sat |
| beside you in school. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |