Skip to content

Commit

Permalink
refactor(bindings): change actual bindings (#398)
Browse files Browse the repository at this point in the history
In the previous PR just changed the checks but not the bindings. This
corrects that.
  • Loading branch information
LeonardoMor authored Jun 19, 2024
1 parent 625a5cf commit 7a01ffb
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 @@ -59,10 +59,10 @@ if !get(g:, 'codeium_disable_bindings')
imap <M-Bslash> <Plug>(codeium-complete)
endif
if empty(mapcheck('<C-k>', 'i'))
imap <script><silent><nowait><expr> <C-Right> codeium#AcceptNextWord()
imap <script><silent><nowait><expr> <C-k> codeium#AcceptNextWord()
endif
if empty(mapcheck('<C-l>', 'i'))
imap <script><silent><nowait><expr> <Right> codeium#AcceptNextLine()
imap <script><silent><nowait><expr> <C-l> codeium#AcceptNextLine()
endif
endif

Expand Down

0 comments on commit 7a01ffb

Please sign in to comment.