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
Wonderful plugin!
I would like to disable some default values, i.e. enabled <-> disabled Is there a way to accomplish that
enabled
disabled
The use case is editing a lazy.nvim plugin spec, when editing the enabled line
lazy.nvim
return { "nat-418/boole.nvim", enabled = true, -- i want to toggle this value opts = { mappings = { increment = "<C-a>", decrement = "<C-x>", }, }, keys = { { mode = { "n", "v" }, "<C-a>" }, { mode = { "n", "v" }, "<C-x>" }, }, }
When I goto that line, if I'm on the LHS and I want to change true to false, the plugin changes enabled to disabled
true
false
The text was updated successfully, but these errors were encountered:
Thanks for this report, I will look into adding a disable option.
Sorry, something went wrong.
No branches or pull requests
Wonderful plugin!
I would like to disable some default values, i.e.
enabled
<->disabled
Is there a way to accomplish that
The use case is editing a
lazy.nvim
plugin spec, when editing the enabled lineWhen I goto that line, if I'm on the LHS and I want to change
true
tofalse
, the plugin changesenabled
todisabled
The text was updated successfully, but these errors were encountered: