|
Karsten Hopp |
73c4a2 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
73c4a2 |
Subject: Patch 7.3.725
|
|
Karsten Hopp |
73c4a2 |
Fcc: outbox
|
|
Karsten Hopp |
73c4a2 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
73c4a2 |
Mime-Version: 1.0
|
|
Karsten Hopp |
73c4a2 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
73c4a2 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
73c4a2 |
------------
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
Patch 7.3.725
|
|
Karsten Hopp |
73c4a2 |
Problem: :aboveleft and :belowright have no effect on :copen.
|
|
Karsten Hopp |
73c4a2 |
Solution: Check for cmdmod.split. (Christian Brabandt)
|
|
Karsten Hopp |
73c4a2 |
Files: src/quickfix.c
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
*** ../vim-7.3.724/src/quickfix.c 2012-11-14 22:38:04.000000000 +0100
|
|
Karsten Hopp |
73c4a2 |
--- src/quickfix.c 2012-11-20 17:51:59.000000000 +0100
|
|
Karsten Hopp |
73c4a2 |
***************
|
|
Karsten Hopp |
73c4a2 |
*** 2347,2354 ****
|
|
Karsten Hopp |
73c4a2 |
/* The current window becomes the previous window afterwards. */
|
|
Karsten Hopp |
73c4a2 |
win = curwin;
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
! if (eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
|
|
Karsten Hopp |
73c4a2 |
! /* Create the new window at the very bottom. */
|
|
Karsten Hopp |
73c4a2 |
win_goto(lastwin);
|
|
Karsten Hopp |
73c4a2 |
if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
|
|
Karsten Hopp |
73c4a2 |
return; /* not enough room for window */
|
|
Karsten Hopp |
73c4a2 |
--- 2347,2356 ----
|
|
Karsten Hopp |
73c4a2 |
/* The current window becomes the previous window afterwards. */
|
|
Karsten Hopp |
73c4a2 |
win = curwin;
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
! if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow)
|
|
Karsten Hopp |
73c4a2 |
! && cmdmod.split == 0)
|
|
Karsten Hopp |
73c4a2 |
! /* Create the new window at the very bottom, except when
|
|
Karsten Hopp |
73c4a2 |
! * :belowright or :aboveleft is used. */
|
|
Karsten Hopp |
73c4a2 |
win_goto(lastwin);
|
|
Karsten Hopp |
73c4a2 |
if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL)
|
|
Karsten Hopp |
73c4a2 |
return; /* not enough room for window */
|
|
Karsten Hopp |
73c4a2 |
*** ../vim-7.3.724/src/version.c 2012-11-20 17:21:29.000000000 +0100
|
|
Karsten Hopp |
73c4a2 |
--- src/version.c 2012-11-20 17:50:30.000000000 +0100
|
|
Karsten Hopp |
73c4a2 |
***************
|
|
Karsten Hopp |
73c4a2 |
*** 727,728 ****
|
|
Karsten Hopp |
73c4a2 |
--- 727,730 ----
|
|
Karsten Hopp |
73c4a2 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
73c4a2 |
+ /**/
|
|
Karsten Hopp |
73c4a2 |
+ 725,
|
|
Karsten Hopp |
73c4a2 |
/**/
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
--
|
|
Karsten Hopp |
73c4a2 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
73c4a2 |
40. You tell the cab driver you live at
|
|
Karsten Hopp |
73c4a2 |
http://123.elm.street/house/bluetrim.html
|
|
Karsten Hopp |
73c4a2 |
41. You actually try that 123.elm.street address.
|
|
Karsten Hopp |
73c4a2 |
|
|
Karsten Hopp |
73c4a2 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
73c4a2 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
73c4a2 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
73c4a2 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|