Scrolling within floating window? #66
-
When "toggling" Claude Code, the scroll keys don't work for me, while scrolling with the mouse does. This issue alludes that you must "exit" terminal mode (using keys Config: return {
'greggh/claude-code.nvim',
dependencies = {
'nvim-lua/plenary.nvim', -- Required for git operations
},
opts = {
window = {
position = 'float',
float = {
width = '90%', -- Take up 90% of the editor width
height = '90%', -- Take up 90% of the editor height
row = 'center', -- Center vertically
col = 'center', -- Center horizontally
relative = 'editor',
border = 'double', -- Use double border style
},
},
},
keys = {
{
'<leader>cr',
'<cmd>ClaudeCodeResume<CR>',
desc = 'Claude Code Resume',
},
},
}
Can you help me figure out what I'm doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Note, after scrolling with the mouse, and work. |
Beta Was this translation helpful? Give feedback.
-
Ah, it seems I must enter both the <C-> and the in that order. This now allows me to scroll with my directional keys, or the page up/down keys. |
Beta Was this translation helpful? Give feedback.
Ah, it seems I must enter both the <C-> and the in that order. This now allows me to scroll with my directional keys, or the page up/down keys.