Skip to content

Commit 2c31989

Browse files
committed
Copilot.vim 1.12.1
1 parent 9bfa856 commit 2c31989

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

autoload/copilot/agent.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let g:autoloaded_copilot_agent = 1
55

66
scriptencoding utf-8
77

8-
let s:plugin_version = '1.12.0'
8+
let s:plugin_version = '1.12.1'
99

1010
let s:error_exit = -1
1111

doc/copilot.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ Lua version:
130130
>
131131
vim.keymap.set('i', '<C-L>', '<Plug>(copilot-accept-word)')
132132
<
133-
134133
*copilot-i_CTRL-]*
135134
<C-]> Dismiss the current suggestion.
136135
<Plug>(copilot-dismiss)

plugin/copilot.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ if !get(g:, 'copilot_no_maps')
9595
if empty(mapcheck('<M-Right>', 'i'))
9696
imap <M-Right> <Plug>(copilot-accept-word)
9797
endif
98-
if empty(mapcheck('<M-Down>', 'i'))
98+
if empty(mapcheck('<M-C-Right>', 'i'))
9999
imap <M-Down> <Plug>(copilot-accept-line)
100100
endif
101101
finally

0 commit comments

Comments
 (0)