citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

consistency.vim (240B)


      1 " Make Y behave like C and D
      2 nnoremap Y y$
      3 
      4 " Make cw behave like dw and yw
      5 " NOTE: This causes some weird behaviour for end-of-line edge cases:
      6 "       https://asciinema.org/a/9843
      7 "onoremap <silent> w :execute 'normal! '.v:count1.'w'<CR>