Skip to content

Commit 7a01ffb

Browse files
authored
refactor(bindings): change actual bindings (Exafunction#398)
In the previous PR just changed the checks but not the bindings. This corrects that.
1 parent 625a5cf commit 7a01ffb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/codeium.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ if !get(g:, 'codeium_disable_bindings')
5959
imap <M-Bslash> <Plug>(codeium-complete)
6060
endif
6161
if empty(mapcheck('<C-k>', 'i'))
62-
imap <script><silent><nowait><expr> <C-Right> codeium#AcceptNextWord()
62+
imap <script><silent><nowait><expr> <C-k> codeium#AcceptNextWord()
6363
endif
6464
if empty(mapcheck('<C-l>', 'i'))
65-
imap <script><silent><nowait><expr> <Right> codeium#AcceptNextLine()
65+
imap <script><silent><nowait><expr> <C-l> codeium#AcceptNextLine()
6666
endif
6767
endif
6868

0 commit comments

Comments
 (0)