Skip to content

Commit a726938

Browse files
committed
fix(codecompanion): Remove <C-c> keybinding from normal mode
The <C-c> keybinding was causing issues with copying text in normal mode. This commit removes the keybinding to resolve the issue.
1 parent 9365a58 commit a726938

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/dcai/llm/codecompanion.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ M.setup = function()
162162
},
163163
close = {
164164
modes = {
165-
-- n = '<C-c>',
166-
n = { 'q', '<C-c>' },
165+
-- n = { 'q', '<C-c>' },
166+
n = { 'q' },
167167
-- i = '<C-c>',
168168
i = nil,
169169
},

0 commit comments

Comments
 (0)