When I pressed enter in the vimgrep quickfix window on a filename entry , the ctrlp search result window would pop up automatically even if I didn't call it and the file would not be opened. vim-Ack and Ag had the same situation. But when I disabled CtrlP plugin, vimgrep, vim-Ack and Ag worked properly. And I didn't find any option in CtrlP that can configure this behavior. How Can I do? Thanks!
Asked
Active
Viewed 271 times
0
-
1Use CtrlP's issue tracker, of course. – romainl Aug 17 '16 at 07:28
-
I use CtrlP and I don't have that problem. – iovis Aug 17 '16 at 17:59
-
Basically, CtrlP doesn't set any key mappings for the qf window. Can you put the result of `:verb map
` in the Quickfix window please – Tacahiroy Oct 03 '16 at 08:39
1 Answers
0
You might have CtrlP mapped to <C-m>
. But <C-m>
is a terminal shortkey for <CR>
symbol. So, hitting <C-m>
is the same as hitting <CR>

Yuriy
- 1