|
Karsten Hopp |
c85d93 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
c85d93 |
Subject: Patch 7.2.029
|
|
Karsten Hopp |
c85d93 |
Fcc: outbox
|
|
Karsten Hopp |
c85d93 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
c85d93 |
Mime-Version: 1.0
|
|
Karsten Hopp |
c85d93 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
c85d93 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
c85d93 |
------------
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
Patch 7.2.029
|
|
Karsten Hopp |
c85d93 |
Problem: No completion for ":doautoall".
|
|
Karsten Hopp |
c85d93 |
Solution: Complete ":doautoall" like ":doautocmd". (Doug Kearns)
|
|
Karsten Hopp |
c85d93 |
Files: src/ex_docmd.c
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
*** ../vim-7.2.028/src/ex_docmd.c Thu Sep 18 21:29:07 2008
|
|
Karsten Hopp |
c85d93 |
--- src/ex_docmd.c Mon Nov 3 21:21:17 2008
|
|
Karsten Hopp |
c85d93 |
***************
|
|
Karsten Hopp |
c85d93 |
*** 3609,3614 ****
|
|
Karsten Hopp |
c85d93 |
--- 3610,3616 ----
|
|
Karsten Hopp |
c85d93 |
return set_context_in_autocmd(xp, arg, FALSE);
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
case CMD_doautocmd:
|
|
Karsten Hopp |
c85d93 |
+ case CMD_doautoall:
|
|
Karsten Hopp |
c85d93 |
return set_context_in_autocmd(xp, arg, TRUE);
|
|
Karsten Hopp |
c85d93 |
#endif
|
|
Karsten Hopp |
c85d93 |
case CMD_set:
|
|
Karsten Hopp |
c85d93 |
*** ../vim-7.2.028/src/version.c Thu Nov 6 11:04:50 2008
|
|
Karsten Hopp |
c85d93 |
--- src/version.c Thu Nov 6 17:14:58 2008
|
|
Karsten Hopp |
c85d93 |
***************
|
|
Karsten Hopp |
c85d93 |
*** 678,679 ****
|
|
Karsten Hopp |
c85d93 |
--- 678,681 ----
|
|
Karsten Hopp |
c85d93 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
c85d93 |
+ /**/
|
|
Karsten Hopp |
c85d93 |
+ 29,
|
|
Karsten Hopp |
c85d93 |
/**/
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
--
|
|
Karsten Hopp |
c85d93 |
Press any key to continue, press any other key to quit.
|
|
Karsten Hopp |
c85d93 |
|
|
Karsten Hopp |
c85d93 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
c85d93 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
c85d93 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
c85d93 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|