In neovim, I want to disable the mapping S-Up to PgUp (and same for PgDown), I mean, to use S-Up with no PgUp effect (I will use for some specific mapping), but I can't:
verbose map <S-Up>
says "no mapping found". So, I CANNOT use unmap.~/.config/nvim/init.vim
. The behavior still exists.How to disable neovim making a PgUp when I use S-Up (and same for PgDown)?
I you want to disable the default mapping, you can use <Nop>
(:h <Nop>
):
map <S-Up> <Nop>