0

Below lines are part of my .vimrc.

map <C-S-p> :CtrlPCmdPalette<CR>  
let g:ctrlp_cmdpalette_execute = 1

It's working fine on normal vim,
but not working with neovim.

My neovim init file is correctly refer to .vimrc I think.

set runtimepath^=~/.vim_runtime+=~/.vim_runtime/after  
let &packpath=&runtimepath  
source ~/.vimrc
D. Ben Knoble
  • 26,070
  • 3
  • 29
  • 65

1 Answers1

2

The <C-S-p> is equivalent to <C-p>.

You could checked how it is mapped using:

:verbose map <C-p>

It tells you to which sequence the <C-p> is mapped and which vim script is responsible.

Vivian De Smedt
  • 16,336
  • 3
  • 18
  • 37