Cameron Ring

Results 111 comments of Cameron Ring

#461 Will drop support for nvim < 0.10. It will technically still work but we won't test against earlier versions anymore. Use tag `pre-nvim-0.10` for the last version tested with...

@rmagatti two proposals: 1. It's only stylistic but `no_call_parentheses` is currently true and I'd like to change it to false. I find it makes the code harder to read (function...

@rmagatti any objections to 1 or 2?

Just for documentation, the old commands (`:Session*`, `Autosession search/delete`) have been deprecated. All commands are now under `AutoSession`. The old commands will continue to work, but with a warning. We'll...

As discussed in #482, we're renaming API functions to use lua standard `snake_case` in #483. The `CamelCase` names still exist but will give a deprecation warning. We should remove them...

As mentioned in #494, `pre_save` and `pre_restore` cmds can not stop auto-saving/restoring by returning false

I'm not too familiar with vim-plug but the issue is happening because setup is not being called. You can call setup with something like: ```vimrc call plug#begin() Plug 'rmagatti/auto-session' call...

Based on the code history, I think some [versions from a few years ago that did some initialization in vimscript](https://github.com/rmagatti/auto-session/blob/79ae9f79a44d6d236cc8b209014934d583cc27f2/plugin/auto-session.vim) and may not have needed the setup call so maybe...

Yeah, let's keep it open until the doc/checkhealth changes are merged.

Thanks for filling the new issue! Just to make sure we're on the same page, `auto-session` already supports named sessions, just call `:SessionSave` with an argument, e.g. `:SessionSave mysession`. That...