Replies: 1 comment
|
Thanks for the suggestion and observation. The missed |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When
autowriteis enabled,mini.sessionscreates aVimLeavePreautocmd to write the current session.However, this autocmd is not marked as
nested = true, so autocmds triggered during the session write process (for example,SessionWritePost) are not executed.I understand that
mini.sessionsprovidespreandposthooks, and using them is the preferred approach. However, some plugins only integrate with the standardSessionWritePostautocmd and do not provide their own API/hooks for session writing. In those cases, these plugins cannot work correctly withmini.sessionsautowrite.Would it be possible to set
nested = truefor theVimLeavePreautocmd used byautowrite?Thanks!
All reactions