We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's my lazy.nvim config:
return { 'okuuva/auto-save.nvim', event = 'BufRead', opts = { execution_message = { dim = 0.4, cleaning_interval = 1000 } } }
The value of the dim setting doesn't work. This is because it's only read when VimEnter, ColorScheme or UIEnter is triggered:
VimEnter
ColorScheme
UIEnter
auto-save.nvim/lua/auto-save/init.lua
Line 151 in 19bd29c
Since I'm loading the plugin at BufRead, this happens after any of these events (unless I manually change the colorscheme later).
BufRead
Also, I can't manually set the AutoSaveText highlight as a workaround, because that's only configured when dim is read.
AutoSaveText
dim
The text was updated successfully, but these errors were encountered:
Thanks for the Report.
You are indeed right with your assumptions. I'll provide a PR to fix this.
Sorry, something went wrong.
Awesome, it works perfectly now. Thank you!
Successfully merging a pull request may close this issue.
Here's my lazy.nvim config:
The value of the dim setting doesn't work. This is because it's only read when
VimEnter
,ColorScheme
orUIEnter
is triggered:auto-save.nvim/lua/auto-save/init.lua
Line 151 in 19bd29c
Since I'm loading the plugin at
BufRead
, this happens after any of these events (unless I manually change the colorscheme later).Also, I can't manually set the
AutoSaveText
highlight as a workaround, because that's only configured whendim
is read.The text was updated successfully, but these errors were encountered: