Skip to content

Commit 43e7532

Browse files
authored
fix: use correct prev/next keymap for k and j (#23)
1 parent 8684a8e commit 43e7532

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ For LazyVim/distro users, you can disable nvim-cmp via:
9999
show = '<C-space>',
100100
hide = '<C-e>',
101101
accept = '<Tab>',
102-
select_prev = { '<Up>', '<C-j>' },
103-
select_next = { '<Down>', '<C-k>' },
102+
select_prev = { '<Up>', '<C-k>' },
103+
select_next = { '<Down>', '<C-j>' },
104104

105105
show_documentation = {},
106106
hide_documentation = {},

lua/blink/cmp/config.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ local config = {
131131
show = '<C-space>',
132132
hide = '<C-e>',
133133
accept = '<Tab>',
134-
select_prev = { '<Up>', '<C-j>' },
135-
select_next = { '<Down>', '<C-k>' },
134+
select_prev = { '<Up>', '<C-k>' },
135+
select_next = { '<Down>', '<C-j>' },
136136

137137
show_documentation = {},
138138
hide_documentation = {},

0 commit comments

Comments
 (0)