How can I scroll the hover doc using <C-f> & <C-b>
#306
-
|
I can do this in a lua file which maybe a feature by Currently, I can only use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hey 👋 I had a quick look at the noice.nvim codebase. rustaceanvim's LSP client doesn't use the built-in handler by default (to support hover actions), so there's nothing I can do to support noice.nvim. You can configure rustaceanvim ( It might be a viable option to add a scrolling command like |
Beta Was this translation helpful? Give feedback.
Hey 👋
I had a quick look at the noice.nvim codebase.
It looks like it overrides the built-in LSP hover handler so that its scrolling functions can find the window.
rustaceanvim's LSP client doesn't use the built-in handler by default (to support hover actions), so there's nothing I can do to support noice.nvim.
You can configure rustaceanvim (
:h rustaceanvim.config) to use the built-in hover handler (in which case you lose code actions with theKkeymap, but you can still use it with:RustLsp hover actions).It might be a viable option to add a scrolling command like
:RustLsp scrollFloat [up|down]that works with hover actions, explainError, etc, which you could then invoke via a keymap.…