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? |
Answered by
masonedmison
Aug 12, 2025
Replies: 2 comments
|
Note, after scrolling with the mouse, and work. |
0 replies
|
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. |
0 replies
Answer selected by
masonedmison
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.