mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.281 #746
Problem: When a session file has more than one tabpage and 'showtabline' is one the positions may be slightly off. Solution: Set 'showtabline' to two while positioning windows. https://code.google.com/p/vim/source/detail?r=24c90f1fec859b54cf2b854b98c4c9e614c46061
This commit is contained in:
parent
fee0e2d977
commit
29eb651a92
@ -7974,6 +7974,17 @@ makeopens (
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
int restore_stal = FALSE;
|
||||
// When there are two or more tabpages and 'showtabline' is 1 the tabline
|
||||
// will be displayed when creating the next tab. That resizes the windows
|
||||
// in the first tab, which may cause problems. Set 'showtabline' to 2
|
||||
// temporarily to avoid that.
|
||||
if (p_stal == 1 && first_tabpage->tp_next != NULL) {
|
||||
if (put_line(fd, "set stal=2") == FAIL) {
|
||||
return FAIL;
|
||||
}
|
||||
restore_stal = TRUE;
|
||||
}
|
||||
|
||||
/*
|
||||
* May repeat putting Windows for each tab, when "tabpages" is in
|
||||
@ -8113,6 +8124,9 @@ makeopens (
|
||||
|| put_eol(fd) == FAIL)
|
||||
return FAIL;
|
||||
}
|
||||
if (restore_stal && put_line(fd, "set stal=1") == FAIL) {
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Wipe out an empty unnamed buffer we started in.
|
||||
|
@ -206,7 +206,7 @@ static int included_patches[] = {
|
||||
//284,
|
||||
//283,
|
||||
//282,
|
||||
//281,
|
||||
281,
|
||||
280,
|
||||
//279,
|
||||
//278,
|
||||
|
Loading…
Reference in New Issue
Block a user