auto-session
auto-session copied to clipboard
[BUG] Tabs not restored
Describe the bug Tabs are not properly restored after upgrading to Nvim 0.7
To Reproduce Steps to reproduce the behavior:
-
touch a b && nvim
-
:e a | tabnew b | SaveSession
-
:qa
-
nvim
Expected behavior
Two tabs a
and b
with b
in focus. Instead, only b
is shown
Baseline (please complete the following information):
- Result of
set sessionoptions?
:sessionoptions=winpos,terminal
- OS. e.g
uname -a
:MacOS Monterey
- Neovim version
nvim --version
NVIM v0.7.2
@simonmandlik hey, your sessionoptions
doesn't include tabpages
. Try adding that and see if you get the behaviour you were expecting.
That was it, thanks :) A dumb error when rewriting config from vimscript to lua