|
Karsten Hopp |
1c163c |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1c163c |
Subject: Patch 7.3.1269
|
|
Karsten Hopp |
1c163c |
Fcc: outbox
|
|
Karsten Hopp |
1c163c |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1c163c |
Mime-Version: 1.0
|
|
Karsten Hopp |
1c163c |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1c163c |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1c163c |
------------
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
Patch 7.3.1269
|
|
Karsten Hopp |
1c163c |
Problem: Insert completion keeps entry selected even though the list has
|
|
Karsten Hopp |
1c163c |
changed. (Olivier Teuliere)
|
|
Karsten Hopp |
1c163c |
Solution: Reset compl_shown_match and compl_curr_match. (Christian Brabandt)
|
|
Karsten Hopp |
1c163c |
Files: src/edit.c
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
*** ../vim-7.3.1268/src/edit.c 2013-06-27 22:21:19.000000000 +0200
|
|
Karsten Hopp |
1c163c |
--- src/edit.c 2013-06-29 16:15:27.000000000 +0200
|
|
Karsten Hopp |
1c163c |
***************
|
|
Karsten Hopp |
1c163c |
*** 3467,3472 ****
|
|
Karsten Hopp |
1c163c |
--- 3467,3473 ----
|
|
Karsten Hopp |
1c163c |
}
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
compl_enter_selects = !compl_used_match;
|
|
Karsten Hopp |
1c163c |
+ compl_shown_match = compl_curr_match = compl_first_match;
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
/* Show the popup menu with a different set of matches. */
|
|
Karsten Hopp |
1c163c |
ins_compl_show_pum();
|
|
Karsten Hopp |
1c163c |
*** ../vim-7.3.1268/src/version.c 2013-06-29 15:40:01.000000000 +0200
|
|
Karsten Hopp |
1c163c |
--- src/version.c 2013-06-29 16:14:56.000000000 +0200
|
|
Karsten Hopp |
1c163c |
***************
|
|
Karsten Hopp |
1c163c |
*** 730,731 ****
|
|
Karsten Hopp |
1c163c |
--- 730,733 ----
|
|
Karsten Hopp |
1c163c |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1c163c |
+ /**/
|
|
Karsten Hopp |
1c163c |
+ 1269,
|
|
Karsten Hopp |
1c163c |
/**/
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
--
|
|
Karsten Hopp |
1c163c |
[clop clop]
|
|
Karsten Hopp |
1c163c |
ARTHUR: Old woman!
|
|
Karsten Hopp |
1c163c |
DENNIS: Man!
|
|
Karsten Hopp |
1c163c |
ARTHUR: Man, sorry. What knight lives in that castle over there?
|
|
Karsten Hopp |
1c163c |
DENNIS: I'm thirty seven.
|
|
Karsten Hopp |
1c163c |
ARTHUR: What?
|
|
Karsten Hopp |
1c163c |
DENNIS: I'm thirty seven -- I'm not old!
|
|
Karsten Hopp |
1c163c |
The Quest for the Holy Grail (Monty Python)
|
|
Karsten Hopp |
1c163c |
|
|
Karsten Hopp |
1c163c |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1c163c |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1c163c |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1c163c |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|