Not able to load session with mini.sessions #1289
-
Hello, I installed the plugin with the following config
So I launch nvim and open bunch of files and then quit it. Upon launching vim the session isn't loaded automatically and I get the following message
This is how my sessionopts look like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Everything seems to be correctly set up, just a bit of workflow is missing. There is no detected sessions because there was none written yet. You have to explicitly create (i.e. write) at least one in order for
|
Beta Was this translation helpful? Give feedback.
Everything seems to be correctly set up, just a bit of workflow is missing.
There is no detected sessions because there was none written yet. You have to explicitly create (i.e. write) at least one in order for
autoread
to pick it up. In other words::lua MiniSessions.write('my-session')
(choose your preferred session name). This session now constitutes a "current session".autowrite = true
.MiniSessions.write()
call.