dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 5cf3f2c7c807bff939f741edd8b24e372e1e48df
parent 7731fbdaae75445e2229e045ddbe57eb7eaa8c06
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Sat, 29 Aug 2015 19:41:59 -0700

Vim: Add Y to y$ mapping in nvimrc

Diffstat:
nvimrc | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/nvimrc b/nvimrc @@ -62,3 +62,6 @@ nnoremap ZS :w<CR> " make ZA save and quit all windows nnoremap ZA :wqall<CR> +" C changes until end of line and D deletes until end of line, so why not Y? +noremap Y y$ +