Skip to content

Commit 8ea546f

Browse files
committed
fix keymaps.scrolling
1 parent 8130b56 commit 8ea546f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lua/claude-code/keymaps.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ function M.setup_terminal_navigation(claude_code, config)
176176
vim.api.nvim_buf_set_keymap(
177177
buf,
178178
't',
179-
config.keymaps.window_navigation.page_down,
179+
config.keymaps.scrolling.page_down,
180180
[[<C-\><C-n><C-f>i]],
181181
{ noremap = true, silent = true, desc = 'Scroll full page down' }
182182
)
183183
vim.api.nvim_buf_set_keymap(
184184
buf,
185185
't',
186-
config.keymaps.window_navigation.page_up,
186+
config.keymaps.scrolling.page_up,
187187
[[<C-\><C-n><C-b>i]],
188188
{ noremap = true, silent = true, desc = 'Scroll full page up' }
189189
)

0 commit comments

Comments
 (0)