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
:SatelliteToggle
Describe the solution you'd like Exactly what is sounds like.
If satellite.nvim is enabled, it executes :SatelliteDisable. If satellite.nvim is disabled, it executes :SatelliteEnable.
satellite.nvim
:SatelliteDisable
:SatelliteEnable
Describe alternatives you've considered
local scrollbar_enabled = true function toggle_scrollbar() if scrollbar_enabled then vim.cmd(':SatelliteDisable') else vim.cmd(':SatelliteEnable') end scrollbar_enabled = not scrollbar_enabled end map('n', ' os', toggle_scrollbar)
Not exactly hard to implement yourself, but I think it makes sense inside the plugin.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the solution you'd like
Exactly what is sounds like.
If
satellite.nvim
is enabled, it executes:SatelliteDisable
. Ifsatellite.nvim
is disabled, it executes:SatelliteEnable
.Describe alternatives you've considered
Not exactly hard to implement yourself, but I think it makes sense inside the plugin.
The text was updated successfully, but these errors were encountered: