Skip to content

Commit

Permalink
refactor(bindings): change default bindings (#397)
Browse files Browse the repository at this point in the history
For partial completions. These are not set to anything by default on
insert mode and are not used unlike the arrow keys.
  • Loading branch information
LeonardoMor committed Jun 19, 2024
1 parent c2bcccd commit 625a5cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/codeium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ if !get(g:, 'codeium_disable_bindings')
if empty(mapcheck('<M-Bslash>', 'i'))
imap <M-Bslash> <Plug>(codeium-complete)
endif
if empty(mapcheck('<C-Right>', 'i'))
if empty(mapcheck('<C-k>', 'i'))
imap <script><silent><nowait><expr> <C-Right> codeium#AcceptNextWord()
endif
if empty(mapcheck('<Right>', 'i'))
if empty(mapcheck('<C-l>', 'i'))
imap <script><silent><nowait><expr> <Right> codeium#AcceptNextLine()
endif
endif
Expand Down

0 comments on commit 625a5cf

Please sign in to comment.