Skip to content

Commit

Permalink
fix: use correct prev/next keymap for k and j (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
sQVe authored Oct 8, 2024
1 parent 8684a8e commit 43e7532
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ For LazyVim/distro users, you can disable nvim-cmp via:
show = '<C-space>',
hide = '<C-e>',
accept = '<Tab>',
select_prev = { '<Up>', '<C-j>' },
select_next = { '<Down>', '<C-k>' },
select_prev = { '<Up>', '<C-k>' },
select_next = { '<Down>', '<C-j>' },

show_documentation = {},
hide_documentation = {},
Expand Down
4 changes: 2 additions & 2 deletions lua/blink/cmp/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ local config = {
show = '<C-space>',
hide = '<C-e>',
accept = '<Tab>',
select_prev = { '<Up>', '<C-j>' },
select_next = { '<Down>', '<C-k>' },
select_prev = { '<Up>', '<C-k>' },
select_next = { '<Down>', '<C-j>' },

show_documentation = {},
hide_documentation = {},
Expand Down

0 comments on commit 43e7532

Please sign in to comment.