Hi,
I am sorry.
Please let me change the patch a little bit.
Resolution of the problem was partial.
Reproduce the problem that remains after this patch:
$ vim lines.txt lines.txt -O
50j
<ctrl-w>w
25j
tabnew
gt
mksession!
qa
$ vim -S
The left side of the window that is divided can not
return to the original.
I will attach a small patch.
So there is happiness to you.
--------
Thanks.
Nobuhiro Takasaki
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
diff -r 32de51778c27 src/window.c
--- a/src/window.c Tue May 13 20:23:24 2014 +0200
+++ b/src/window.c Sat May 17 21:09:55 2014 +0900
@@ -5748,7 +5748,7 @@
lnum++;
wp->w_wrow -= line_size + sline;
}
- else if (sline > 0)
+ else if (sline >= 0)
{
/* First line of file reached, use that as topline. */
lnum = 1;