0

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?

Ignacio
  • 1,056
  • 8
  • 17
  • I think you need to check vim community: http://stackoverflow.com/questions/12770103/overriding-a-remapping-from-a-plugin – Piotrek Bzdyl Jan 24 '17 at 11:42

1 Answers1

1

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>