Skip to content

Commit 10ad16c

Browse files
committed
[vim bindings] Make C-q an alias for C-v
Closes codemirror#3806
1 parent b5f9810 commit 10ad16c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

keymap/vim.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@
164164
{ keys: 'v', type: 'action', action: 'toggleVisualMode' },
165165
{ keys: 'V', type: 'action', action: 'toggleVisualMode', actionArgs: { linewise: true }},
166166
{ keys: '<C-v>', type: 'action', action: 'toggleVisualMode', actionArgs: { blockwise: true }},
167+
{ keys: '<C-q>', type: 'action', action: 'toggleVisualMode', actionArgs: { blockwise: true }},
167168
{ keys: 'gv', type: 'action', action: 'reselectLastSelection' },
168169
{ keys: 'J', type: 'action', action: 'joinLines', isEdit: true },
169170
{ keys: 'p', type: 'action', action: 'paste', isEdit: true, actionArgs: { after: true, isEdit: true }},

0 commit comments

Comments
 (0)