Skip to content

Commit 625a5cf

Browse files
authored
refactor(bindings): change default bindings (#397)
For partial completions. These are not set to anything by default on insert mode and are not used unlike the arrow keys.
1 parent c2bcccd commit 625a5cf

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
@@ -58,10 +58,10 @@ if !get(g:, 'codeium_disable_bindings')
5858
if empty(mapcheck('<M-Bslash>', 'i'))
5959
imap <M-Bslash> <Plug>(codeium-complete)
6060
endif
61-
if empty(mapcheck('<C-Right>', 'i'))
61+
if empty(mapcheck('<C-k>', 'i'))
6262
imap <script><silent><nowait><expr> <C-Right> codeium#AcceptNextWord()
6363
endif
64-
if empty(mapcheck('<Right>', 'i'))
64+
if empty(mapcheck('<C-l>', 'i'))
6565
imap <script><silent><nowait><expr> <Right> codeium#AcceptNextLine()
6666
endif
6767
endif

0 commit comments

Comments
 (0)