|
Karsten Hopp |
67ff83 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
67ff83 |
Subject: Patch 7.4.688
|
|
Karsten Hopp |
67ff83 |
Fcc: outbox
|
|
Karsten Hopp |
67ff83 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
67ff83 |
Mime-Version: 1.0
|
|
Karsten Hopp |
67ff83 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
67ff83 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
67ff83 |
------------
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
Patch 7.4.688
|
|
Karsten Hopp |
67ff83 |
Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly.
|
|
Karsten Hopp |
67ff83 |
(Issue 166)
|
|
Karsten Hopp |
67ff83 |
Solution: When using the popup menu remove the "$".
|
|
Karsten Hopp |
67ff83 |
Files: src/edit.c
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
*** ../vim-7.4.687/src/edit.c 2015-03-24 17:49:39.603748681 +0100
|
|
Karsten Hopp |
67ff83 |
--- src/edit.c 2015-03-31 19:11:44.536104891 +0200
|
|
Karsten Hopp |
67ff83 |
***************
|
|
Karsten Hopp |
67ff83 |
*** 3008,3013 ****
|
|
Karsten Hopp |
67ff83 |
--- 3008,3017 ----
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
if (compl_match_array != NULL)
|
|
Karsten Hopp |
67ff83 |
{
|
|
Karsten Hopp |
67ff83 |
+ /* In Replace mode when a $ is displayed at the end of the line only
|
|
Karsten Hopp |
67ff83 |
+ * part of the screen would be updated. We do need to redraw here. */
|
|
Karsten Hopp |
67ff83 |
+ dollar_vcol = -1;
|
|
Karsten Hopp |
67ff83 |
+
|
|
Karsten Hopp |
67ff83 |
/* Compute the screen column of the start of the completed text.
|
|
Karsten Hopp |
67ff83 |
* Use the cursor to get all wrapping and other settings right. */
|
|
Karsten Hopp |
67ff83 |
col = curwin->w_cursor.col;
|
|
Karsten Hopp |
67ff83 |
*** ../vim-7.4.687/src/version.c 2015-03-31 18:30:09.143370872 +0200
|
|
Karsten Hopp |
67ff83 |
--- src/version.c 2015-03-31 18:55:59.934413747 +0200
|
|
Karsten Hopp |
67ff83 |
***************
|
|
Karsten Hopp |
67ff83 |
*** 743,744 ****
|
|
Karsten Hopp |
67ff83 |
--- 743,746 ----
|
|
Karsten Hopp |
67ff83 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
67ff83 |
+ /**/
|
|
Karsten Hopp |
67ff83 |
+ 688,
|
|
Karsten Hopp |
67ff83 |
/**/
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
--
|
|
Karsten Hopp |
67ff83 |
Biting someone with your natural teeth is "simple assault," while biting
|
|
Karsten Hopp |
67ff83 |
someone with your false teeth is "aggravated assault."
|
|
Karsten Hopp |
67ff83 |
[real standing law in Louisana, United States of America]
|
|
Karsten Hopp |
67ff83 |
|
|
Karsten Hopp |
67ff83 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
67ff83 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
67ff83 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
67ff83 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|