How to disable "s" and "S" keybindings in Paredit.vim

190 Views Asked by At

the default "s" and "S" in paredit.vim override my vim-sneak plugin defaults "s" keybindings. Do you know of a way to disable paredit.vim default keybindings?

1

There are 1 best solutions below

2
On

Open paredit.vim file and comment these lines by adding " at the beginning of each one:

nnoremap <buffer> <silent> s  :<C-U>call PareditEraseFwd()<CR>i

nnoremap <buffer> <silent> S  V:<C-U>call PareditChange(visualmode(),1)<CR>