You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
294B

  1. noremap <buffer> D D
  2. augroup custom_fugitive
  3. autocmd!
  4. autocmd VimEnter,BufWinEnter * if !empty(maparg('dd', 'n')) |
  5. \ unmap <buffer> dd|
  6. \ unmap <buffer> dp|
  7. \ unmap <buffer> dv|
  8. \ unmap <buffer> ds|
  9. \ unmap <buffer> dh|
  10. \ endif
  11. augroup END