Cameron Ring
Cameron Ring
Actually, now that I think about it, I wonder if it's possible to make it work by being careful/consistent with how paths are treated. I'll look into this a bit...
@rmagatti I think this can be closed now
@rmagatti I think this can be closed now
Seems like we should add a check for that and pop up a warning if localoptions isn't present. I'll look into that
It looks like `vim.v.this_session` is now modifiable as this returns `test` for me: ```viml :lua vim.v.this_session = 'test'; print(vim.v.this_session) ``` So i think it makes sense to clear it when...
If you find this from google and are on a Mac, is likely being grabbed by OS for changing inputs as described here: https://jay.gooby.org/2022/11/22/re-enabling-ctrl-space-shortcut-for-iterm-and-other-apps-under-macos-ventura
I could see a special case for 'nvim .', where it would just use the same session as launching without the dot. in that case, would you expect to have...
More precisely, these are the options that come to mind: args_allow_dot: boolean, special case to treat ‘nvim .’ the same as if there were no args so session is loaded/saved...
Can you add `log_level = 'debug'` to your opts and paste what it shows?
Just noticed that your config has `event = 'VeryLazy'`. That will break session auto-restore because the `VeryLazy` event happens after the `VimEnter` event we use to trigger session loading. It...